| 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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 'chromium_config_kwargs': { | 423 'chromium_config_kwargs': { |
| 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': { |
| 434 'chromium_config': 'chromium', |
| 435 'chromium_apply_config': ['clang_tot', 'mb'], |
| 436 'gclient_config': 'chromium', |
| 437 'chromium_config_kwargs': { |
| 438 'BUILD_CONFIG': 'Release', |
| 439 'TARGET_BITS': 64, |
| 440 }, |
| 441 'test_generators': [ |
| 442 steps.generate_gtest, |
| 443 steps.generate_script, |
| 444 steps.generate_isolated_script, |
| 445 ], |
| 446 'bot_type': 'builder_tester', |
| 447 'testing': { |
| 448 'platform': 'linux', |
| 449 }, |
| 450 }, |
| 433 'UBSanVptr Linux': { | 451 'UBSanVptr Linux': { |
| 434 'chromium_config': 'chromium', | 452 'chromium_config': 'chromium', |
| 435 'chromium_apply_config': ['mb'], | 453 'chromium_apply_config': ['mb'], |
| 436 'gclient_config': 'chromium', | 454 'gclient_config': 'chromium', |
| 437 'chromium_config_kwargs': { | 455 'chromium_config_kwargs': { |
| 438 'BUILD_CONFIG': 'Release', | 456 'BUILD_CONFIG': 'Release', |
| 439 'TARGET_BITS': 64, | 457 'TARGET_BITS': 64, |
| 440 }, | 458 }, |
| 441 'test_generators': [ | 459 'test_generators': [ |
| 442 steps.generate_gtest, | 460 steps.generate_gtest, |
| (...skipping 1759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2202 steps.generate_gtest, | 2220 steps.generate_gtest, |
| 2203 steps.generate_script, | 2221 steps.generate_script, |
| 2204 steps.generate_isolated_script, | 2222 steps.generate_isolated_script, |
| 2205 ], | 2223 ], |
| 2206 'testing': { 'platform': 'win', }, | 2224 'testing': { 'platform': 'win', }, |
| 2207 'use_isolate': True, | 2225 'use_isolate': True, |
| 2208 'enable_swarming': True, | 2226 'enable_swarming': True, |
| 2209 }, | 2227 }, |
| 2210 }, | 2228 }, |
| 2211 } | 2229 } |
| OLD | NEW |