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

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

Issue 2030713004: Refactor chromium.perf recipe configs. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@2-refactorr
Patch Set: Rebase, hope it's right :) Created 4 years, 5 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/recipe_modules/chromium_android/chromium_config.py » ('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 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):
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_android/chromium_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698