Bug 1090015 - Suppress multichar warnings in the OMX code. r=kinetik

Suppress warnings about multi-byte character constants entirely
in the OMX code. These are part of the Android stagefright API
style, so it's more appropriate to use them than not.
This commit is contained in:
Ralph Giles 2016-01-11 18:19:12 -08:00
parent 03a18ab1cb
commit f3a7d5e5a4

View File

@ -71,10 +71,11 @@ include('/ipc/chromium/chromium-config.mozbuild')
# - about attributes on forward declarations for types that are already
# defined, which complains about an important MOZ_EXPORT for android::AString
# - about multi-character constants which are used in codec-related code
# and are part of Android's libstagefright API style.
if CONFIG['GNU_CC'] or CONFIG['CLANG_CL']:
CXXFLAGS += [
'-Wno-error=attributes',
'-Wno-error=multichar'
'-Wno-multichar'
]
FINAL_LIBRARY = 'xul'