| 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 20c8c967bd05217df4d35eab6e2b29260ceed048..98b8d68219f36b321b0306f9959a43931501bfff 100644
|
| --- a/scripts/slave/recipe_modules/chromium/config.py
|
| +++ b/scripts/slave/recipe_modules/chromium/config.py
|
| @@ -791,17 +791,15 @@ def v8_hybrid_arm(c):
|
| def enable_ipc_fuzzer(c):
|
| c.gyp_env.GYP_DEFINES['enable_ipc_fuzzer'] = 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):
|
|
|