| 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 'gclient_config': 'chromium', | 321 'gclient_config': 'chromium', |
| 322 'chromium_config_kwargs': { | 322 'chromium_config_kwargs': { |
| 323 'BUILD_CONFIG': 'Release', | 323 'BUILD_CONFIG': 'Release', |
| 324 'TARGET_BITS': 64, | 324 'TARGET_BITS': 64, |
| 325 }, | 325 }, |
| 326 'bot_type': 'builder', | 326 'bot_type': 'builder', |
| 327 'testing': { | 327 'testing': { |
| 328 'platform': 'linux', | 328 'platform': 'linux', |
| 329 }, | 329 }, |
| 330 }, | 330 }, |
| 331 'LTO Linux': { |
| 332 'chromium_config': 'chromium_official', |
| 333 'chromium_apply_config': ['mb'], |
| 334 'gclient_config': 'chromium', |
| 335 'gclient_apply_config': ['chrome_internal'], |
| 336 'chromium_config_kwargs': { |
| 337 'BUILD_CONFIG': 'Release', |
| 338 'TARGET_BITS': 64, |
| 339 }, |
| 340 'test_generators': [ |
| 341 steps.generate_gtest, |
| 342 steps.generate_script, |
| 343 steps.generate_isolated_script, |
| 344 ], |
| 345 'bot_type': 'builder_tester', |
| 346 'testing': { |
| 347 'platform': 'linux', |
| 348 }, |
| 349 }, |
| 331 'LTO Linux Perf': { | 350 'LTO Linux Perf': { |
| 332 'chromium_config': 'chromium_official', | 351 'chromium_config': 'chromium_official', |
| 333 'chromium_apply_config': ['mb'], | 352 'chromium_apply_config': ['mb'], |
| 334 'gclient_config': 'chromium', | 353 'gclient_config': 'chromium', |
| 335 'gclient_apply_config': ['chrome_internal'], | 354 'gclient_apply_config': ['chrome_internal'], |
| 336 'chromium_config_kwargs': { | 355 'chromium_config_kwargs': { |
| 337 'BUILD_CONFIG': 'Release', | 356 'BUILD_CONFIG': 'Release', |
| 338 'TARGET_BITS': 64, | 357 'TARGET_BITS': 64, |
| 339 }, | 358 }, |
| 340 'bot_type': 'builder', | 359 'bot_type': 'builder', |
| (...skipping 1765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2106 'enable_swarming': True, | 2125 'enable_swarming': True, |
| 2107 'testing': { | 2126 'testing': { |
| 2108 'platform': 'win', | 2127 'platform': 'win', |
| 2109 }, | 2128 }, |
| 2110 }, | 2129 }, |
| 2111 | 2130 |
| 2112 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, | 2131 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, |
| 2113 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, | 2132 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, |
| 2114 }, | 2133 }, |
| 2115 } | 2134 } |
| OLD | NEW |