| Index: scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py b/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
|
| index ddcd3997fb9c81b658c5ff6a0a4639e335493d9f..d3f8ce1fcfe68752aa80f6d61ee2d069dafb2742 100644
|
| --- a/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/tryserver_chromium_perf.py
|
| @@ -5,14 +5,9 @@
|
| from . import chromium_perf
|
|
|
| import DEPS
|
| -CONFIG_CTX = DEPS['gclient'].CONFIG_CTX
|
| +CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX
|
| +GCLIENT_CONFIG_CTX = DEPS['gclient'].CONFIG_CTX
|
|
|
| -@CONFIG_CTX(includes=['chromium_perf'])
|
| -def tryserver_chromium_perf(c):
|
| - soln = c.solutions.add()
|
| - soln.name = 'catapult'
|
| - soln.url = ('https://chromium.googlesource.com/external/github.com/'
|
| - 'catapult-project/catapult.git')
|
|
|
| SPEC = {
|
| 'builders': {},
|
| @@ -20,6 +15,21 @@ SPEC = {
|
| }
|
|
|
|
|
| +@CHROMIUM_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
|
| +
|
| +
|
| +@GCLIENT_CONFIG_CTX(includes=['chromium_perf'])
|
| +def tryserver_chromium_perf(c):
|
| + soln = c.solutions.add()
|
| + soln.name = 'catapult'
|
| + soln.url = ('https://chromium.googlesource.com/external/github.com/'
|
| + 'catapult-project/catapult.git')
|
| +
|
| +
|
| def _AddBuildSpec(name, platform, target_bits=64):
|
| SPEC['builders'][name] = chromium_perf.BuildSpec(
|
| 'tryserver_chromium_perf', None, platform, target_bits)
|
|
|