| Index: scripts/slave/recipes/chromium_trybot.py
|
| diff --git a/scripts/slave/recipes/chromium_trybot.py b/scripts/slave/recipes/chromium_trybot.py
|
| index 1154fe7be88a505acc8c20c45511120c52e8b54e..ac9b69dc017d3b62e10fe62252ef3961091b55a3 100644
|
| --- a/scripts/slave/recipes/chromium_trybot.py
|
| +++ b/scripts/slave/recipes/chromium_trybot.py
|
| @@ -421,7 +421,7 @@ def _GenStepsInternal(api):
|
| override_bot_type='builder_tester',
|
| override_tests=tests)
|
|
|
| - requires_compile, _, compile_targets = \
|
| + requires_compile, matching_exes, compile_targets = \
|
| api.chromium_tests.analyze(
|
| affected_files,
|
| all_compile_targets(api, tests + tests_including_triggered),
|
| @@ -431,9 +431,9 @@ def _GenStepsInternal(api):
|
| if not requires_compile:
|
| return
|
|
|
| - tests = tests_in_compile_targets(api, compile_targets, tests)
|
| + tests = tests_in_compile_targets(api, matching_exes, tests)
|
| tests_including_triggered = tests_in_compile_targets(
|
| - api, compile_targets, tests_including_triggered)
|
| + api, matching_exes, tests_including_triggered)
|
|
|
| api.chromium_tests.compile_specific_targets(
|
| bot_config['mastername'],
|
|
|