| Index: scripts/slave/recipe_modules/chromium_tests/api.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_tests/api.py b/scripts/slave/recipe_modules/chromium_tests/api.py
|
| index e0d38195ff26a9e49c11ded4a97fa4926ea2eacb..9835a9abbc128f02c6dcab72b8c24c02cee18038 100644
|
| --- a/scripts/slave/recipe_modules/chromium_tests/api.py
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/api.py
|
| @@ -326,7 +326,9 @@ class ChromiumTestsApi(recipe_api.RecipeApi):
|
| compile_targets.update(t.compile_targets(self.m))
|
|
|
| # Only add crash_service when we have explicit compile targets.
|
| - if self.m.platform.is_win and compile_targets:
|
| + if (self.m.platform.is_win and
|
| + compile_targets and
|
| + 'all' not in compile_targets):
|
| compile_targets.add('crash_service')
|
|
|
| # Lastly, add any targets the checkout-side test spec told us to use.
|
|
|