| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from . import steps | 5 from . import steps |
| 6 | 6 |
| 7 RESULTS_URL = 'https://chromeperf.appspot.com' | 7 RESULTS_URL = 'https://chromeperf.appspot.com' |
| 8 | 8 |
| 9 | 9 |
| 10 KITCHEN_TEST_SPEC = { | 10 KITCHEN_TEST_SPEC = { |
| (...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1040 'chromium_config_kwargs': { | 1040 'chromium_config_kwargs': { |
| 1041 'BUILD_CONFIG': 'Release', | 1041 'BUILD_CONFIG': 'Release', |
| 1042 'TARGET_BITS': 32, | 1042 'TARGET_BITS': 32, |
| 1043 }, | 1043 }, |
| 1044 'bot_type': 'builder', | 1044 'bot_type': 'builder', |
| 1045 'testing': { | 1045 'testing': { |
| 1046 'platform': 'win', | 1046 'platform': 'win', |
| 1047 }, | 1047 }, |
| 1048 'use_isolate': True, | 1048 'use_isolate': True, |
| 1049 'enable_swarming': True, | 1049 'enable_swarming': True, |
| 1050 'compile_targets': [ 'chromium_builder_asan' ], | 1050 'compile_targets': [ 'all' ], |
| 1051 # add_tests_as_compile_targets not needed for the asan bot, it doesn't | 1051 # Workaround so that recipes doesn't add random build targets to our |
| 1052 # build everything. | 1052 # compile line. We want to build everything. |
| 1053 'add_tests_as_compile_targets': False, |
| 1053 }, | 1054 }, |
| 1054 'CrWinAsan tester': { | 1055 'CrWinAsan tester': { |
| 1055 'chromium_config': 'chromium_win_asan', | 1056 'chromium_config': 'chromium_win_asan', |
| 1056 'gclient_config': 'chromium', | 1057 'gclient_config': 'chromium', |
| 1057 'chromium_config_kwargs': { | 1058 'chromium_config_kwargs': { |
| 1058 'BUILD_CONFIG': 'Release', | 1059 'BUILD_CONFIG': 'Release', |
| 1059 'TARGET_BITS': 32, | 1060 'TARGET_BITS': 32, |
| 1060 }, | 1061 }, |
| 1061 'test_generators': [ | 1062 'test_generators': [ |
| 1062 steps.generate_gtest, | 1063 steps.generate_gtest, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1076 'BUILD_CONFIG': 'Release', | 1077 'BUILD_CONFIG': 'Release', |
| 1077 'TARGET_BITS': 32, | 1078 'TARGET_BITS': 32, |
| 1078 }, | 1079 }, |
| 1079 'GYP_DEFINES': { 'component': 'shared_library' }, | 1080 'GYP_DEFINES': { 'component': 'shared_library' }, |
| 1080 'bot_type': 'builder', | 1081 'bot_type': 'builder', |
| 1081 'testing': { | 1082 'testing': { |
| 1082 'platform': 'win', | 1083 'platform': 'win', |
| 1083 }, | 1084 }, |
| 1084 'use_isolate': True, | 1085 'use_isolate': True, |
| 1085 'enable_swarming': True, | 1086 'enable_swarming': True, |
| 1086 'compile_targets': [ 'chromium_builder_asan' ], | 1087 'compile_targets': [ 'all' ], |
| 1087 # add_tests_as_compile_targets not needed for the asan bot, it doesn't | 1088 # Workaround so that recipes doesn't add random build targets to our |
| 1088 # build everything. | 1089 # compile line. We want to build everything. |
| 1090 'add_tests_as_compile_targets': False, |
| 1089 }, | 1091 }, |
| 1090 'CrWinAsan(dll) tester': { | 1092 'CrWinAsan(dll) tester': { |
| 1091 'chromium_config': 'chromium_win_asan', | 1093 'chromium_config': 'chromium_win_asan', |
| 1092 'gclient_config': 'chromium', | 1094 'gclient_config': 'chromium', |
| 1093 'chromium_config_kwargs': { | 1095 'chromium_config_kwargs': { |
| 1094 'BUILD_CONFIG': 'Release', | 1096 'BUILD_CONFIG': 'Release', |
| 1095 'TARGET_BITS': 32, | 1097 'TARGET_BITS': 32, |
| 1096 }, | 1098 }, |
| 1097 'test_generators': [ | 1099 'test_generators': [ |
| 1098 steps.generate_gtest, | 1100 steps.generate_gtest, |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1111 'chromium_config_kwargs': { | 1113 'chromium_config_kwargs': { |
| 1112 'BUILD_CONFIG': 'Release', | 1114 'BUILD_CONFIG': 'Release', |
| 1113 'TARGET_BITS': 32, | 1115 'TARGET_BITS': 32, |
| 1114 }, | 1116 }, |
| 1115 'bot_type': 'builder', | 1117 'bot_type': 'builder', |
| 1116 'testing': { | 1118 'testing': { |
| 1117 'platform': 'win', | 1119 'platform': 'win', |
| 1118 }, | 1120 }, |
| 1119 'use_isolate': True, | 1121 'use_isolate': True, |
| 1120 'enable_swarming': True, | 1122 'enable_swarming': True, |
| 1121 'compile_targets': [ 'chromium_builder_asan' ], | 1123 'compile_targets': [ 'all' ], |
| 1122 # add_tests_as_compile_targets not needed for the asan bot, it doesn't | 1124 # Workaround so that recipes doesn't add random build targets to our |
| 1123 # build everything. | 1125 # compile line. We want to build everything. |
| 1126 'add_tests_as_compile_targets': False, |
| 1124 }, | 1127 }, |
| 1125 'CrWinAsanCov tester': { | 1128 'CrWinAsanCov tester': { |
| 1126 'chromium_config': 'chromium_win_asan', | 1129 'chromium_config': 'chromium_win_asan', |
| 1127 'gclient_config': 'chromium', | 1130 'gclient_config': 'chromium', |
| 1128 'chromium_config_kwargs': { | 1131 'chromium_config_kwargs': { |
| 1129 'BUILD_CONFIG': 'Release', | 1132 'BUILD_CONFIG': 'Release', |
| 1130 'TARGET_BITS': 32, | 1133 'TARGET_BITS': 32, |
| 1131 }, | 1134 }, |
| 1132 'test_generators': [ | 1135 'test_generators': [ |
| 1133 steps.generate_gtest, | 1136 steps.generate_gtest, |
| (...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2271 steps.generate_gtest, | 2274 steps.generate_gtest, |
| 2272 steps.generate_script, | 2275 steps.generate_script, |
| 2273 steps.generate_isolated_script, | 2276 steps.generate_isolated_script, |
| 2274 ], | 2277 ], |
| 2275 'testing': { 'platform': 'win', }, | 2278 'testing': { 'platform': 'win', }, |
| 2276 'use_isolate': True, | 2279 'use_isolate': True, |
| 2277 'enable_swarming': True, | 2280 'enable_swarming': True, |
| 2278 }, | 2281 }, |
| 2279 }, | 2282 }, |
| 2280 } | 2283 } |
| OLD | NEW |