Disable goma for uwp bots.

Goma dislikes the compiler options passed in the UWP build.

Bug: webrtc:10050
Change-Id: Iea356c628daae716d500fd01a2824cb686e384fa
Reviewed-on: https://webrtc-review.googlesource.com/c/112288
Reviewed-by: Oleh Prypin <oprypin@webrtc.org>
Commit-Queue: Oleh Prypin <oprypin@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#25837}
This commit is contained in:
Patrik Höglund
2018-11-29 13:31:23 +01:00
committed by Commit Bot
parent a725988ebf
commit 2f25ade901

View File

@ -351,7 +351,8 @@
'win_fastlink',
],
'win_uwp_release_bot_x64': [
'gn', 'clang', 'openh264', 'release_bot', 'x64', 'winuwp',
# UWP passes compiler flags that are not supported by goma.
'gn', 'clang', 'openh264', 'x64', 'winuwp', 'release_bot_no_goma'
],
# Mac
@ -548,6 +549,10 @@
'mixins': ['pure_release_bot', 'dcheck_always_on'],
},
'release_bot_no_goma': {
'mixins': ['release', 'dcheck_always_on'],
},
'tsan': {
'gn_args': 'is_tsan=true',
},