Chromium Code Reviews| 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 2267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2278 steps.generate_script, | 2278 steps.generate_script, |
| 2279 steps.generate_isolated_script, | 2279 steps.generate_isolated_script, |
| 2280 steps.generate_instrumentation_test, | 2280 steps.generate_instrumentation_test, |
| 2281 ], | 2281 ], |
| 2282 'testing': { | 2282 'testing': { |
| 2283 'platform': 'linux', | 2283 'platform': 'linux', |
| 2284 }, | 2284 }, |
| 2285 'use_isolate': True, | 2285 'use_isolate': True, |
| 2286 'enable_swarming': True, | 2286 'enable_swarming': True, |
| 2287 }, | 2287 }, |
| 2288 '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.
| |
| 2289 'chromium_config': 'chromium', | |
| 2290 'chromium_apply_config': ['chromeos', 'mb'], | |
| 2291 'gclient_config': 'chromium', | |
| 2292 'chromium_config_kwargs': { | |
| 2293 'BUILD_CONFIG': 'Release', | |
| 2294 'TARGET_PLATFORM': 'chromeos', | |
| 2295 'TARGET_BITS': 64, | |
| 2296 }, | |
| 2297 'bot_type': 'builder_tester', | |
| 2298 'test_generators': [ | |
| 2299 steps.generate_gtest, | |
| 2300 steps.generate_script, | |
| 2301 steps.generate_isolated_script, | |
| 2302 ], | |
| 2303 'testing': { 'platform': 'linux', }, | |
| 2304 }, | |
| 2305 'Mojo Windows': { | |
| 2306 'chromium_config': 'chromium', | |
| 2307 'chromium_apply_config': ['mb'], | |
| 2308 'gclient_config': 'chromium', | |
| 2309 'chromium_config_kwargs': { | |
| 2310 'BUILD_CONFIG': 'Release', | |
| 2311 'TARGET_PLATFORM': 'win', | |
| 2312 'TARGET_BITS': 32, | |
| 2313 }, | |
| 2314 'bot_type': 'builder_tester', | |
| 2315 'test_generators': [ | |
| 2316 steps.generate_gtest, | |
| 2317 steps.generate_script, | |
| 2318 steps.generate_isolated_script, | |
| 2319 ], | |
| 2320 'testing': { 'platform': 'win', }, | |
| 2321 }, | |
| 2288 }, | 2322 }, |
| 2289 } | 2323 } |
| OLD | NEW |