| 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 18 matching lines...) Expand all Loading... |
| 29 'use_isolate': True, | 29 'use_isolate': True, |
| 30 'enable_swarming': True, | 30 'enable_swarming': True, |
| 31 } | 31 } |
| 32 | 32 |
| 33 | 33 |
| 34 SPEC = { | 34 SPEC = { |
| 35 'settings': { | 35 'settings': { |
| 36 'build_gs_bucket': 'chromium-fyi-archive', | 36 'build_gs_bucket': 'chromium-fyi-archive', |
| 37 }, | 37 }, |
| 38 'builders': { | 38 'builders': { |
| 39 'Win Builder': { | |
| 40 'chromium_config': 'chromium', | |
| 41 'chromium_apply_config': ['ninja_confirm_noop'], | |
| 42 'gclient_config': 'chromium', | |
| 43 'chromium_config_kwargs': { | |
| 44 'BUILD_CONFIG': 'Release', | |
| 45 'TARGET_BITS': 32, | |
| 46 }, | |
| 47 'bot_type': 'builder', | |
| 48 'compile_targets': [ | |
| 49 'chromium_builder_tests', | |
| 50 ], | |
| 51 'testing': { | |
| 52 'platform': 'win', | |
| 53 }, | |
| 54 'enable_swarming': True, | |
| 55 'use_isolate': True, | |
| 56 }, | |
| 57 'Chromium Mac 10.10 MacViews': { | 39 'Chromium Mac 10.10 MacViews': { |
| 58 'chromium_config': 'chromium', | 40 'chromium_config': 'chromium', |
| 59 'gclient_config': 'chromium', | 41 'gclient_config': 'chromium', |
| 60 'chromium_apply_config': ['chromium_mac_mac_views'], | 42 'chromium_apply_config': ['chromium_mac_mac_views'], |
| 61 'chromium_config_kwargs': { | 43 'chromium_config_kwargs': { |
| 62 'BUILD_CONFIG': 'Release', | 44 'BUILD_CONFIG': 'Release', |
| 63 'TARGET_BITS': 64, | 45 'TARGET_BITS': 64, |
| 64 }, | 46 }, |
| 65 'test_generators': [ | 47 'test_generators': [ |
| 66 steps.generate_gtest, | 48 steps.generate_gtest, |
| (...skipping 2109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2176 'enable_swarming': True, | 2158 'enable_swarming': True, |
| 2177 'testing': { | 2159 'testing': { |
| 2178 'platform': 'win', | 2160 'platform': 'win', |
| 2179 }, | 2161 }, |
| 2180 }, | 2162 }, |
| 2181 | 2163 |
| 2182 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, | 2164 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, |
| 2183 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, | 2165 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, |
| 2184 }, | 2166 }, |
| 2185 } | 2167 } |
| OLD | NEW |