Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Unified Diff: tools/buildbot_spec.py

Issue 1955923002: Disable skia_warnings_as_errors for Fast bot. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/buildbot_spec.py
diff --git a/tools/buildbot_spec.py b/tools/buildbot_spec.py
index edc05f0b0344a1f6e8f3df57c08cc85b1f2bc428..c1271ee41054df80b21a6bd68ae6cb103d489ba7 100755
--- a/tools/buildbot_spec.py
+++ b/tools/buildbot_spec.py
@@ -80,6 +80,9 @@ def gyp_defines(builder_dict):
elif ('Mac' in builder_dict.get('os', '') and
'Android' in builder_dict.get('extra_config', '')):
werr = False
+ elif 'Fast' in builder_dict.get('extra_config', ''):
+ # See https://bugs.chromium.org/p/skia/issues/detail?id=5257
+ werr = False
else:
werr = True
gyp_defs['skia_warnings_as_errors'] = str(int(werr)) # True/False -> '1'/'0'
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698