Chromium Code Reviews| 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() |