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' |