mac: Don't use -Werror on third-party code in official builds.

BUG=none
TEST=official builders go green

Review URL: https://chromiumcodereview.appspot.com/10382068

git-svn-id: http://src.chromium.org/svn/trunk/src/build@135896 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
thakis@chromium.org 2012-05-08 19:45:49 +00:00
Родитель 42f812252a
Коммит 17a4452df3
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -1550,6 +1550,13 @@
'xcode_settings': { 'xcode_settings': {
'WARNING_CFLAGS!': ['-Wall', '-Wextra'], 'WARNING_CFLAGS!': ['-Wall', '-Wextra'],
}, },
'conditions': [
['buildtype=="Official"', {
'xcode_settings': {
'GCC_TREAT_WARNINGS_AS_ERRORS': 'NO', # -Werror
},
}],
],
}], }],
], ],
}, { }, {