Bug 1208929 - Turn on -Wshadow for dom/animation; r=glandium

This patch also shuffles the order of LOCAL_INCLUDES and FINAL_LIBRARY to match
what most other moz.build files seem to do.
This commit is contained in:
Brian Birtles 2015-09-29 13:22:24 +09:00
parent ef50884772
commit fd820b2aa6

View File

@ -30,8 +30,11 @@ UNIFIED_SOURCES += [
'PendingAnimationTracker.cpp',
]
FINAL_LIBRARY = 'xul'
LOCAL_INCLUDES += [
'/dom/base',
]
FINAL_LIBRARY = 'xul'
if CONFIG['GNU_CXX']:
CXXFLAGS += ['-Wshadow']