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': { |
| 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 'use_isolate': True, |
| 2305 'enable_swarming': True, |
| 2306 }, |
| 2307 'Mojo Windows': { |
| 2308 'chromium_config': 'chromium', |
| 2309 'chromium_apply_config': ['mb'], |
| 2310 'gclient_config': 'chromium', |
| 2311 'chromium_config_kwargs': { |
| 2312 'BUILD_CONFIG': 'Release', |
| 2313 'TARGET_PLATFORM': 'win', |
| 2314 'TARGET_BITS': 32, |
| 2315 }, |
| 2316 'bot_type': 'builder_tester', |
| 2317 'test_generators': [ |
| 2318 steps.generate_gtest, |
| 2319 steps.generate_script, |
| 2320 steps.generate_isolated_script, |
| 2321 ], |
| 2322 'testing': { 'platform': 'win', }, |
| 2323 'use_isolate': True, |
| 2324 'enable_swarming': True, |
| 2325 }, |
2288 }, | 2326 }, |
2289 } | 2327 } |
OLD | NEW |