| 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 2dd48cf46ae74e9bc3c75dfba252f8cf263954e1..65b77eeef64bb5a8f4185f136f5c69c92411d5b9 100644
|
| --- a/scripts/slave/recipe_modules/chromium/config.py
|
| +++ b/scripts/slave/recipe_modules/chromium/config.py
|
| @@ -781,17 +781,15 @@ def v8_slow_dchecks(c):
|
| def v8_verify_heap(c):
|
| c.gyp_env.GYP_DEFINES['v8_enable_verify_heap'] = 1
|
|
|
| -@config_ctx()
|
| +@config_ctx(includes=['chromium', 'official', 'mb'])
|
| def chromium_perf(c):
|
| c.clobber_before_runhooks = False
|
|
|
| -@config_ctx()
|
| -def chromium_perf_fyi(c):
|
| - c.clobber_before_runhooks = False
|
| - if c.HOST_PLATFORM == 'win':
|
| - c.compile_py.compiler = None
|
| - c.compile_py.goma_dir = None
|
| - c.gyp_env.GYP_DEFINES['use_goma'] = 0
|
| +@config_ctx(includes=['chromium_perf', 'goma_hermetic_fallback'])
|
| +def tryserver_chromium_perf(c):
|
| + # Bisects may build using old toolchains, so goma_hermetic_fallback is
|
| + # required. See https://codereview.chromium.org/1015633002
|
| + pass
|
|
|
| @config_ctx(includes=['chromium_clang'])
|
| def cast_linux(c):
|
|
|