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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 'BUILD_CONFIG': 'Release', | 424 'BUILD_CONFIG': 'Release', |
425 'TARGET_BITS': 64, | 425 'TARGET_BITS': 64, |
426 }, | 426 }, |
427 'bot_type': 'builder', | 427 'bot_type': 'builder', |
428 'compile_targets': [ 'chromium_builder_perf' ], | 428 'compile_targets': [ 'chromium_builder_perf' ], |
429 'testing': { | 429 'testing': { |
430 'platform': 'linux', | 430 'platform': 'linux', |
431 }, | 431 }, |
432 }, | 432 }, |
433 'ThinLTO Linux ToT': { | 433 'ThinLTO Linux ToT': { |
434 'chromium_config': 'chromium', | 434 'chromium_config': 'clang_tot_linux_lld', |
435 'chromium_apply_config': ['clang_tot', 'mb'], | 435 'chromium_apply_config': ['mb'], |
436 'gclient_config': 'chromium', | 436 'gclient_config': 'chromium', |
437 'chromium_config_kwargs': { | 437 'chromium_config_kwargs': { |
438 'BUILD_CONFIG': 'Release', | 438 'BUILD_CONFIG': 'Release', |
439 'TARGET_BITS': 64, | 439 'TARGET_BITS': 64, |
440 }, | 440 }, |
441 'test_generators': [ | 441 'test_generators': [ |
442 steps.generate_gtest, | 442 steps.generate_gtest, |
443 steps.generate_script, | 443 steps.generate_script, |
444 steps.generate_isolated_script, | 444 steps.generate_isolated_script, |
445 ], | 445 ], |
(...skipping 1780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2226 steps.generate_gtest, | 2226 steps.generate_gtest, |
2227 steps.generate_script, | 2227 steps.generate_script, |
2228 steps.generate_isolated_script, | 2228 steps.generate_isolated_script, |
2229 ], | 2229 ], |
2230 'testing': { 'platform': 'win', }, | 2230 'testing': { 'platform': 'win', }, |
2231 'use_isolate': True, | 2231 'use_isolate': True, |
2232 'enable_swarming': True, | 2232 'enable_swarming': True, |
2233 }, | 2233 }, |
2234 }, | 2234 }, |
2235 } | 2235 } |
OLD | NEW |