| 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 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1204 'BUILD_CONFIG': 'Release', | 1204 'BUILD_CONFIG': 'Release', |
| 1205 'TARGET_BITS': 64, | 1205 'TARGET_BITS': 64, |
| 1206 }, | 1206 }, |
| 1207 'compile_targets': [ 'chromium_builder_tests' ], | 1207 'compile_targets': [ 'chromium_builder_tests' ], |
| 1208 'goma_canary': True, | 1208 'goma_canary': True, |
| 1209 'tests': steps.GOMA_TESTS, | 1209 'tests': steps.GOMA_TESTS, |
| 1210 'testing': { | 1210 'testing': { |
| 1211 'platform': 'linux' | 1211 'platform': 'linux' |
| 1212 } | 1212 } |
| 1213 }, | 1213 }, |
| 1214 'Chromium Linux32 Goma Canary (clobber)': { | |
| 1215 'chromium_config': 'chromium', | |
| 1216 'chromium_apply_config': ['clobber', 'goma_canary', 'mb'], | |
| 1217 'gclient_config': 'chromium', | |
| 1218 'chromium_config_kwargs': { | |
| 1219 'BUILD_CONFIG': 'Release', | |
| 1220 'TARGET_BITS': 32, | |
| 1221 }, | |
| 1222 'compile_targets': [ 'chromium_builder_tests' ], | |
| 1223 'goma_canary': True, | |
| 1224 'tests': steps.GOMA_TESTS, | |
| 1225 'testing': { | |
| 1226 'platform': 'linux' | |
| 1227 } | |
| 1228 }, | |
| 1229 'Chromium Linux Precise Goma LinkTest': { | 1214 'Chromium Linux Precise Goma LinkTest': { |
| 1230 'chromium_config': 'chromium', | 1215 'chromium_config': 'chromium', |
| 1231 'chromium_apply_config': ['goma_canary', 'goma_linktest', 'mb'], | 1216 'chromium_apply_config': ['goma_canary', 'goma_linktest', 'mb'], |
| 1232 'gclient_config': 'chromium', | 1217 'gclient_config': 'chromium', |
| 1233 'chromium_config_kwargs': { | 1218 'chromium_config_kwargs': { |
| 1234 'BUILD_CONFIG': 'Release', | 1219 'BUILD_CONFIG': 'Release', |
| 1235 'TARGET_BITS': 64, | 1220 'TARGET_BITS': 64, |
| 1236 }, | 1221 }, |
| 1237 'compile_targets': [ 'chromium_builder_tests' ], | 1222 'compile_targets': [ 'chromium_builder_tests' ], |
| 1238 'goma_canary': True, | 1223 'goma_canary': True, |
| (...skipping 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2195 steps.generate_gtest, | 2180 steps.generate_gtest, |
| 2196 steps.generate_script, | 2181 steps.generate_script, |
| 2197 steps.generate_isolated_script, | 2182 steps.generate_isolated_script, |
| 2198 ], | 2183 ], |
| 2199 'testing': { 'platform': 'win', }, | 2184 'testing': { 'platform': 'win', }, |
| 2200 'use_isolate': True, | 2185 'use_isolate': True, |
| 2201 'enable_swarming': True, | 2186 'enable_swarming': True, |
| 2202 }, | 2187 }, |
| 2203 }, | 2188 }, |
| 2204 } | 2189 } |
| OLD | NEW |