| 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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 ], | 586 ], |
| 587 'test_generators': [ | 587 'test_generators': [ |
| 588 steps.generate_gtest, | 588 steps.generate_gtest, |
| 589 steps.generate_script, | 589 steps.generate_script, |
| 590 steps.generate_isolated_script, | 590 steps.generate_isolated_script, |
| 591 ], | 591 ], |
| 592 'testing': { | 592 'testing': { |
| 593 'platform': 'linux', | 593 'platform': 'linux', |
| 594 }, | 594 }, |
| 595 }, | 595 }, |
| 596 'WinClang': { | |
| 597 'chromium_config': 'chromium_win_clang', | |
| 598 'chromium_apply_config': ['mb'], | |
| 599 'gclient_config': 'chromium', | |
| 600 'chromium_config_kwargs': { | |
| 601 'BUILD_CONFIG': 'Debug', | |
| 602 'TARGET_BITS': 64, | |
| 603 }, | |
| 604 'compile_targets': [ | |
| 605 'all', | |
| 606 ], | |
| 607 # Recipes builds Debug builds with component=shared_library by default. | |
| 608 'bot_type': 'builder', | |
| 609 'testing': { | |
| 610 'platform': 'win', | |
| 611 }, | |
| 612 'use_isolate': True, | |
| 613 'enable_swarming': True, | |
| 614 # Workaround so that recipes doesn't add random build targets to our | |
| 615 # compile line. We want to build everything. | |
| 616 'add_tests_as_compile_targets': False, | |
| 617 }, | |
| 618 'CrWinClang': { | 596 'CrWinClang': { |
| 619 'chromium_config': 'chromium_win_clang_official', | 597 'chromium_config': 'chromium_win_clang_official', |
| 620 'gclient_config': 'chromium', | 598 'gclient_config': 'chromium', |
| 621 'gclient_apply_config': ['chrome_internal'], | 599 'gclient_apply_config': ['chrome_internal'], |
| 622 'chromium_apply_config': ['mb'], | 600 'chromium_apply_config': ['mb'], |
| 623 'chromium_config_kwargs': { | 601 'chromium_config_kwargs': { |
| 624 'BUILD_CONFIG': 'Release', | 602 'BUILD_CONFIG': 'Release', |
| 625 'TARGET_BITS': 32, | 603 'TARGET_BITS': 32, |
| 626 }, | 604 }, |
| 627 'compile_targets': [ | 605 'compile_targets': [ |
| (...skipping 1550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2178 'enable_swarming': True, | 2156 'enable_swarming': True, |
| 2179 'testing': { | 2157 'testing': { |
| 2180 'platform': 'win', | 2158 'platform': 'win', |
| 2181 }, | 2159 }, |
| 2182 }, | 2160 }, |
| 2183 | 2161 |
| 2184 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, | 2162 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, |
| 2185 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, | 2163 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, |
| 2186 }, | 2164 }, |
| 2187 } | 2165 } |
| OLD | NEW |