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

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

Issue 1814713002: ensure_goma for goma canary (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 9 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
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 635ba64706e9bc207d5a8480df4cc88490395c9a..84b30c35ddefc047e750115827f24a27cb76a8ef 100644
--- a/scripts/slave/recipe_modules/chromium/config.py
+++ b/scripts/slave/recipe_modules/chromium/config.py
@@ -40,6 +40,7 @@ def BaseConfig(HOST_PLATFORM, HOST_ARCH, HOST_BITS,
compiler = Single(basestring, required=False),
mode = Single(basestring, required=False),
goma_dir = Single(Path, required=False),
+ goma_canary = Single(bool, empty_val=False, required=False),
goma_hermetic = Single(basestring, required=False),
goma_enable_remote_link = Single(bool, empty_val=False, required=False),
goma_store_local_run_output = Single(bool, empty_val=False, required=False),
@@ -251,6 +252,7 @@ def msvs2015(c):
@config_ctx()
def goma_canary(c):
+ c.compile_py.goma_canary = True
c.compile_py.goma_hermetic = 'error'
c.compile_py.goma_enable_compiler_info_cache = True

Powered by Google App Engine
This is Rietveld 408576698