Chromium Code Reviews| Index: scripts/slave/recipes/chromium_trybot.py |
| diff --git a/scripts/slave/recipes/chromium_trybot.py b/scripts/slave/recipes/chromium_trybot.py |
| index df15dc718f1f7461019dc75c702a359486cf3f7d..401ebfcd83abd9477451e9e510b0739da7c3bfc6 100644 |
| --- a/scripts/slave/recipes/chromium_trybot.py |
| +++ b/scripts/slave/recipes/chromium_trybot.py |
| @@ -462,10 +462,13 @@ def _RunStepsInternal(api): |
| override_bot_type='builder_tester', |
| override_tests=tests) |
| + targets_for_analyze = sorted(set( |
| + all_compile_targets(api, tests + tests_including_triggered) + |
| + compile_targets)) |
|
sky
2015/06/26 15:29:00
Can we add some sort of assertion that we aren't p
Paweł Hajdan Jr.
2015/06/26 15:42:48
Good point. Done. WDYT?
|
| requires_compile, matching_exes, compile_targets = \ |
| api.chromium_tests.analyze( |
| affected_files, |
| - all_compile_targets(api, tests + tests_including_triggered), |
| + targets_for_analyze, |
| compile_targets, |
| 'trybot_analyze_config.json') |