| 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
|
|
|
|
|