| 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 'Blimp Client Android': { | 2169 'Blimp Android Client': { |
| 2170 'android_config': 'main_builder_rel_mb', | 2170 'android_config': 'main_builder_rel_mb', |
| 2171 'bot_type': 'builder_tester', | 2171 'bot_type': 'builder_tester', |
| 2172 'chromium_config': 'android', | 2172 'chromium_config': 'android', |
| 2173 'chromium_config_kwargs': { | 2173 'chromium_config_kwargs': { |
| 2174 'BUILD_CONFIG': 'Release', | 2174 'BUILD_CONFIG': 'Release', |
| 2175 'TARGET_BITS': 64, | 2175 'TARGET_BITS': 64, |
| 2176 'TARGET_PLATFORM': 'android', | 2176 'TARGET_PLATFORM': 'android', |
| 2177 }, | 2177 }, |
| 2178 'enable_swarming': True, | 2178 'enable_swarming': True, |
| 2179 'gclient_apply_config': ['android'], | 2179 'gclient_apply_config': ['android'], |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2282 steps.generate_gtest, | 2282 steps.generate_gtest, |
| 2283 steps.generate_script, | 2283 steps.generate_script, |
| 2284 steps.generate_isolated_script, | 2284 steps.generate_isolated_script, |
| 2285 ], | 2285 ], |
| 2286 'testing': { 'platform': 'win', }, | 2286 'testing': { 'platform': 'win', }, |
| 2287 'use_isolate': True, | 2287 'use_isolate': True, |
| 2288 'enable_swarming': True, | 2288 'enable_swarming': True, |
| 2289 }, | 2289 }, |
| 2290 }, | 2290 }, |
| 2291 } | 2291 } |
| OLD | NEW |