| 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 2148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2159 'test_generators': [ | 2159 'test_generators': [ |
| 2160 steps.generate_gtest, | 2160 steps.generate_gtest, |
| 2161 steps.generate_script, | 2161 steps.generate_script, |
| 2162 steps.generate_isolated_script, | 2162 steps.generate_isolated_script, |
| 2163 steps.generate_instrumentation_test, | 2163 steps.generate_instrumentation_test, |
| 2164 ], | 2164 ], |
| 2165 'testing': { | 2165 'testing': { |
| 2166 'platform': 'linux', | 2166 'platform': 'linux', |
| 2167 }, | 2167 }, |
| 2168 }, | 2168 }, |
| 2169 | 2169 'Blimp Client Android': { |
| 2170 'android_config': 'main_builder_rel_mb', |
| 2171 'bot_type': 'builder_tester', |
| 2172 'chromium_config': 'android', |
| 2173 'chromium_config_kwargs': { |
| 2174 'BUILD_CONFIG': 'Release', |
| 2175 'TARGET_BITS': 64, |
| 2176 'TARGET_PLATFORM': 'android', |
| 2177 }, |
| 2178 'enable_swarming': True, |
| 2179 'gclient_apply_config': ['android'], |
| 2180 'gclient_config': 'chromium', |
| 2181 'testing': { |
| 2182 'platform': 'linux', |
| 2183 }, |
| 2184 'use_isolate': True, |
| 2185 }, |
| 2186 'Blimp Linux Engine': { |
| 2187 'bot_type': 'builder_tester', |
| 2188 'chromium_apply_config': [ 'mb' ], |
| 2189 'chromium_config': 'chromium', |
| 2190 'chromium_config_kwargs': { |
| 2191 'BUILD_CONFIG': 'Release', |
| 2192 'TARGET_BITS': 64, |
| 2193 'TARGET_PLATFORM': 'linux', |
| 2194 }, |
| 2195 'enable_swarming': True, |
| 2196 'gclient_config': 'chromium', |
| 2197 'testing': { |
| 2198 'platform': 'linux' |
| 2199 }, |
| 2200 'use_isolate': True, |
| 2201 }, |
| 2170 'Linux remote_run Builder': { | 2202 'Linux remote_run Builder': { |
| 2171 'chromium_config': 'chromium', | 2203 'chromium_config': 'chromium', |
| 2172 'chromium_apply_config': [ | 2204 'chromium_apply_config': [ |
| 2173 'mb', | 2205 'mb', |
| 2174 'ninja_confirm_noop', | 2206 'ninja_confirm_noop', |
| 2175 'archive_gpu_tests', | 2207 'archive_gpu_tests', |
| 2176 'chrome_with_codecs' | 2208 'chrome_with_codecs' |
| 2177 ], | 2209 ], |
| 2178 'gclient_config': 'chromium', | 2210 'gclient_config': 'chromium', |
| 2179 'chromium_config_kwargs': { | 2211 'chromium_config_kwargs': { |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2250 steps.generate_gtest, | 2282 steps.generate_gtest, |
| 2251 steps.generate_script, | 2283 steps.generate_script, |
| 2252 steps.generate_isolated_script, | 2284 steps.generate_isolated_script, |
| 2253 ], | 2285 ], |
| 2254 'testing': { 'platform': 'win', }, | 2286 'testing': { 'platform': 'win', }, |
| 2255 'use_isolate': True, | 2287 'use_isolate': True, |
| 2256 'enable_swarming': True, | 2288 'enable_swarming': True, |
| 2257 }, | 2289 }, |
| 2258 }, | 2290 }, |
| 2259 } | 2291 } |
| OLD | NEW |