| 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 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2217 steps.generate_gtest, | 2202 steps.generate_gtest, |
| 2218 steps.generate_script, | 2203 steps.generate_script, |
| 2219 steps.generate_isolated_script, | 2204 steps.generate_isolated_script, |
| 2220 ], | 2205 ], |
| 2221 'testing': { 'platform': 'win', }, | 2206 'testing': { 'platform': 'win', }, |
| 2222 'use_isolate': True, | 2207 'use_isolate': True, |
| 2223 'enable_swarming': True, | 2208 'enable_swarming': True, |
| 2224 }, | 2209 }, |
| 2225 }, | 2210 }, |
| 2226 } | 2211 } |
| OLD | NEW |