MB: Don't treat warnings as errors for GCC.

This makes it possible to enable GCC compilation in our
main waterfall.

BUG=webrtc:7853
NOTRY=True

Change-Id: I99075c6f582e9b471eb7a4a2ea709bac67ceba86
Reviewed-on: https://chromium-review.googlesource.com/544998
Reviewed-by: Edward Lemur <ehmaldonado@webrtc.org>
Commit-Queue: Henrik Kjellander <kjellander@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#18721}
This commit is contained in:
Henrik Kjellander
2017-06-22 17:27:58 +02:00
committed by Commit Bot
parent 4d25a0554a
commit ab04559c7f

View File

@ -149,6 +149,7 @@
'linux32_arm_dbg': 'debug_bot_arm',
'linux32_arm_rel': 'release_bot_arm',
'linux_asan': 'asan_lsan_clang_release_bot_x64',
'linux_gcc': 'gcc_release_bot_x64',
'linux_memcheck': 'memcheck_release_bot_x64',
'linux_msan': 'msan_clang_release_bot_x64',
'linux_tsan2': 'tsan_clang_release_bot_x64',
@ -199,7 +200,7 @@
'configs': {
# Linux, Mac and Windows
'gcc_release_bot_x64': [
'gn', 'gcc', 'release_bot', 'x64'
'gn', 'gcc', 'release_bot', 'x64', 'no_rtc_tests'
],
# TOOD(kjellander): Restore Goma for this when crbug.com/726706 is fixed.
'debug_bot_arm': [
@ -385,7 +386,8 @@
},
'gcc': {
'gn_args': 'is_clang=false use_sysroot=false',
'gn_args': ('is_clang=false use_sysroot=false '
'treat_warnings_as_errors=false'),
},
'gn': {'type': 'gn'},