| Index: scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py b/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
|
| index c075dc53be729155d470e7c4dfaa26e6b0fc65a1..c8207d4bfa4de0a5a4668089e7895ebf756d99b8 100644
|
| --- a/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_perf.py
|
| @@ -58,7 +58,8 @@ def _BaseSpec(bot_type, config_name, platform, target_bits, tests):
|
|
|
|
|
| def BuildSpec(
|
| - config_name, perf_id, platform, target_bits, enable_swarming=False):
|
| + config_name, perf_id, platform, target_bits, enable_swarming=False,
|
| + extra_compile_targets=None):
|
| if platform == 'android':
|
| # TODO: Run sizes on Android.
|
| tests = []
|
| @@ -77,6 +78,8 @@ def BuildSpec(
|
| spec['enable_swarming'] = True
|
| spec['use_isolate'] = True
|
| spec['compile_targets'] = ['chromium_builder_perf']
|
| + if extra_compile_targets:
|
| + spec['compile_targets'] += extra_compile_targets
|
|
|
| return spec
|
|
|
|
|