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

Unified Diff: scripts/slave/recipe_modules/chromium/config.py

Issue 878923002: Don't set fastbuild=1 for Mac ASan trybots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 11 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 | scripts/slave/recipes/chromium_trybot.expected/full_tryserver_chromium_mac_mac_chromium_asan_rel_ng.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium/config.py
diff --git a/scripts/slave/recipe_modules/chromium/config.py b/scripts/slave/recipe_modules/chromium/config.py
index c34750a5fe82b2868dcd7feb3904bfb6caaa9969..1a1fcb5f3733fb94a605792dc15d1d74f924158a 100644
--- a/scripts/slave/recipe_modules/chromium/config.py
+++ b/scripts/slave/recipe_modules/chromium/config.py
@@ -453,7 +453,9 @@ def _memory_tool(c, tool):
@config_ctx()
def trybot_flavor(c):
- fastbuild(c, optional=True)
+ if not (c.TARGET_PLATFORM == 'mac' and
+ c.gyp_env.GYP_DEFINES.get('asan', 0)):
Paweł Hajdan Jr. 2015/01/27 13:57:19 This is potentially fragile. Expectations show us
iannucci 2015/01/30 01:21:00 Configs are definitely allowed to introspect thems
Alexander Potapenko 2015/01/30 10:29:00 That's nice to know, thank you.
+ fastbuild(c, optional=True)
dcheck(c, optional=True)
@config_ctx()
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium_trybot.expected/full_tryserver_chromium_mac_mac_chromium_asan_rel_ng.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698