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 459909708c83de0eed228f28067c301834176de7..e200994895f6f7a757e9c0f02c2cf5d93dbf931a 100644 |
| --- a/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py |
| @@ -574,7 +574,7 @@ SPEC = { |
| 'gclient_config': 'chromium', |
| 'chromium_config_kwargs': { |
| 'BUILD_CONFIG': 'Release', |
| - 'TARGET_BITS': 64, |
| + 'TARGET_BITS': 32, |
| }, |
| 'GYP_DEFINES': { 'component': 'shared_library', 'use_lld': 1 }, |
| 'bot_type': 'builder', |
| @@ -592,7 +592,7 @@ SPEC = { |
| 'gclient_config': 'chromium', |
| 'chromium_config_kwargs': { |
| 'BUILD_CONFIG': 'Release', |
| - 'TARGET_BITS': 64, |
| + 'TARGET_BITS': 32, |
| }, |
| 'test_generators': [ |
| steps.generate_gtest, |
| @@ -604,6 +604,41 @@ SPEC = { |
| }, |
| 'enable_swarming': True, |
| }, |
| + 'CrWinClangLLD64': { |
| + 'chromium_config': 'chromium_win_clang_tot', |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'GYP_DEFINES': { 'component': 'shared_library', 'use_lld': 1 }, |
| + 'bot_type': 'builder', |
| + 'testing': { |
| + 'platform': 'win', |
| + }, |
| + 'use_isolate': True, |
| + 'enable_swarming': True, |
| + # Workaround so that recipes doesn't add random build targets to our |
| + # compile line. We want to build everything. |
| + 'add_tests_as_compile_targets': False, |
|
Adrian Kuegel
2015/07/28 15:01:06
Small comment: you could just specify compile_targ
Nico
2015/07/28 15:11:16
I want the bot to build the default target. (Also,
|
| + }, |
| + 'CrWinClangLLD64 tester': { |
| + 'chromium_config': 'chromium_no_goma', |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'test_generators': [ |
| + steps.generate_gtest, |
| + ], |
| + 'bot_type': 'tester', |
| + 'parent_buildername': 'CrWinClangLLD64', |
| + 'testing': { |
| + 'platform': 'win', |
| + }, |
| + 'enable_swarming': True, |
| + }, |
| 'CrWinAsan': { |
| 'chromium_config': 'chromium_win_clang_asan_tot', |
| 'gclient_config': 'chromium', |