| Index: scripts/slave/recipe_modules/chromium_tests/steps.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_tests/steps.py b/scripts/slave/recipe_modules/chromium_tests/steps.py
|
| index 58a0fe05541d442aced7a19dbf692e56be6f31d0..3be98861d36706757a31821ecc42ba51d2fc260f 100644
|
| --- a/scripts/slave/recipe_modules/chromium_tests/steps.py
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/steps.py
|
| @@ -1415,7 +1415,11 @@ class PrintPreviewTests(PythonBasedTest): # pylint: disable=W032
|
|
|
| @staticmethod
|
| def compile_targets(api):
|
| - return ['browser_tests', 'blink_tests']
|
| + targets = ['browser_tests', 'blink_tests']
|
| + if api.platform.is_win:
|
| + targets.append('crash_service')
|
| +
|
| + return targets
|
|
|
|
|
| class BisectTest(Test): # pylint: disable=W0232
|
| @@ -1814,7 +1818,7 @@ class WebViewCTSTest(Test):
|
| @property
|
| def name(self):
|
| return 'WebView CTS'
|
| -
|
| +
|
| @property
|
| def uses_local_devices(self):
|
| return True
|
|
|