| 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 9f8b6b677d3c3ffefd2e625f2884b056b7f250d9..eded0aa7aaa952dc13d05b8cca43b23d71c72a51 100644
|
| --- a/scripts/slave/recipe_modules/chromium_tests/steps.py
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/steps.py
|
| @@ -1422,11 +1422,7 @@ class PrintPreviewTests(PythonBasedTest): # pylint: disable=W032
|
|
|
| @staticmethod
|
| def compile_targets(api):
|
| - targets = ['browser_tests', 'blink_tests']
|
| - if api.platform.is_win:
|
| - targets.append('crash_service')
|
| -
|
| - return targets
|
| + return ['browser_tests', 'blink_tests']
|
|
|
|
|
| class BisectTest(Test): # pylint: disable=W0232
|
| @@ -1843,7 +1839,7 @@ class WebViewCTSTest(Test):
|
| @property
|
| def name(self):
|
| return 'WebView CTS'
|
| -
|
| +
|
| @property
|
| def uses_local_devices(self):
|
| return True
|
|
|