Bug 798158 - Part 0: Do not treat format warnings as errors in a few directories; r=mshal

This commit is contained in:
Ehsan Akhgari 2014-03-27 16:38:20 -04:00
Родитель f158767b3e
Коммит 156d7e387b
4 изменённых файлов: 16 добавлений и 0 удалений

Просмотреть файл

@ -229,3 +229,7 @@ LOCAL_INCLUDES += [
'/layout/xul',
'/netwerk/base/src',
]
if CONFIG['GNU_CC'] and CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
# Work around bug 986928
CXXFLAGS += ['-Wno-error=format']

Просмотреть файл

@ -30,3 +30,7 @@ LOCAL_INCLUDES += [
RESOURCE_FILES.dtd += [
'htmlmathml-f.ent',
]
if CONFIG['GNU_CC'] and CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
# Work around bug 986928
CXXFLAGS += ['-Wno-error=format']

Просмотреть файл

@ -19,3 +19,7 @@ FINAL_LIBRARY = 'gklayout'
LOCAL_INCLUDES += [
'/dom/events/',
]
if CONFIG['GNU_CC'] and CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
# Work around bug 986928
CXXFLAGS += ['-Wno-error=format']

Просмотреть файл

@ -157,3 +157,7 @@ LOCAL_INCLUDES += [
if CONFIG['MOZ_OPTIMIZE']:
DEFINES['MOZ_OPTIMIZE'] = True
if CONFIG['GNU_CC'] and CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
# Work around bug 986928
CXXFLAGS += ['-Wno-error=format']