| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 'TARGET_BITS': 64, | 66 'TARGET_BITS': 64, |
| 67 }, | 67 }, |
| 68 'test_generators': [ | 68 'test_generators': [ |
| 69 steps.generate_gtest, | 69 steps.generate_gtest, |
| 70 steps.generate_script, | 70 steps.generate_script, |
| 71 ], | 71 ], |
| 72 'testing': { | 72 'testing': { |
| 73 'platform': 'mac', | 73 'platform': 'mac', |
| 74 }, | 74 }, |
| 75 }, | 75 }, |
| 76 'Chromium Mac 10.11 Force Mac Toolchain': { |
| 77 'chromium_config': 'chromium', |
| 78 'chromium_apply_config': ['mb', 'force_mac_toolchain'], |
| 79 'gclient_config': 'chromium', |
| 80 'chromium_config_kwargs': { |
| 81 'BUILD_CONFIG': 'Release', |
| 82 'TARGET_BITS': 64, |
| 83 }, |
| 84 'test_generators': [ |
| 85 steps.generate_gtest, |
| 86 steps.generate_script, |
| 87 ], |
| 88 'testing': { |
| 89 'platform': 'mac', |
| 90 }, |
| 91 }, |
| 76 'Linux ARM': { | 92 'Linux ARM': { |
| 77 'chromium_config': 'chromium', | 93 'chromium_config': 'chromium', |
| 78 'gclient_config': 'chromium', | 94 'gclient_config': 'chromium', |
| 79 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], | 95 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], |
| 80 'chromium_config_kwargs': { | 96 'chromium_config_kwargs': { |
| 81 'BUILD_CONFIG': 'Release', | 97 'BUILD_CONFIG': 'Release', |
| 82 'TARGET_ARCH': 'arm', | 98 'TARGET_ARCH': 'arm', |
| 83 'TARGET_BITS': 32, | 99 'TARGET_BITS': 32, |
| 84 }, | 100 }, |
| 85 'bot_type': 'builder_tester', | 101 'bot_type': 'builder_tester', |
| (...skipping 2057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2143 'enable_swarming': True, | 2159 'enable_swarming': True, |
| 2144 'testing': { | 2160 'testing': { |
| 2145 'platform': 'win', | 2161 'platform': 'win', |
| 2146 }, | 2162 }, |
| 2147 }, | 2163 }, |
| 2148 | 2164 |
| 2149 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, | 2165 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, |
| 2150 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, | 2166 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, |
| 2151 }, | 2167 }, |
| 2152 } | 2168 } |
| OLD | NEW |