Chromium Code Reviews| Index: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py b/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| index 53857412e65830b7db19ef552be81d5450fe3bf2..e412b0cb9a344d25a42b76676a8453e08e8dc2a4 100644 |
| --- a/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| @@ -2285,5 +2285,39 @@ SPEC = { |
| 'use_isolate': True, |
| 'enable_swarming': True, |
| }, |
| + 'Mojo ChromiumOS': { |
|
msw
2016/06/29 23:14:59
q: should these also specify either of these?
'us
Dirk Pranke
2016/06/30 00:12:04
Probably. We shouldn't be deploying machines that
msw
2016/06/30 01:45:32
Done.
|
| + 'chromium_config': 'chromium', |
| + 'chromium_apply_config': ['chromeos', 'mb'], |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_PLATFORM': 'chromeos', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'bot_type': 'builder_tester', |
| + 'test_generators': [ |
| + steps.generate_gtest, |
| + steps.generate_script, |
| + steps.generate_isolated_script, |
| + ], |
| + 'testing': { 'platform': 'linux', }, |
| + }, |
| + 'Mojo Windows': { |
| + 'chromium_config': 'chromium', |
| + 'chromium_apply_config': ['mb'], |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_PLATFORM': 'win', |
| + 'TARGET_BITS': 32, |
| + }, |
| + 'bot_type': 'builder_tester', |
| + 'test_generators': [ |
| + steps.generate_gtest, |
| + steps.generate_script, |
| + steps.generate_isolated_script, |
| + ], |
| + 'testing': { 'platform': 'win', }, |
| + }, |
| }, |
| } |