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..88968cb4b76c1f012b04f605254281272d8cd011 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) + |
sky
2015/06/29 02:28:25
This certainly works, but shouldn't we instead war
Paweł Hajdan Jr.
2015/06/29 12:38:22
That's right. Do you think it's blocking this CL?
|
+ [t for t in compile_targets if t.lower() != 'all'])) |
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') |