Chromium Code Reviews| 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 2169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2180 }, | 2180 }, | 
| 2181 'compile_targets': [ | 2181 'compile_targets': [ | 
| 2182 'chrome', | 2182 'chrome', | 
| 2183 ], | 2183 ], | 
| 2184 'enable_swarming': True, | 2184 'enable_swarming': True, | 
| 2185 'checkout_dir': 'win', | 2185 'checkout_dir': 'win', | 
| 2186 'testing': { | 2186 'testing': { | 
| 2187 'platform': 'win', | 2187 'platform': 'win', | 
| 2188 }, | 2188 }, | 
| 2189 }, | 2189 }, | 
| 2190 'Android VR Tests': { | |
| 2191 'chromium_config': 'android', | |
| 2192 'gclient_config': 'chromium', | |
| 2193 'gclient_apply_config': ['android'], | |
| 2194 'chromium_config_kwargs': { | |
| 2195 'BUILD_CONFIG': 'Debug', | |
| 2196 'TARGET_BITS': 32, | |
| 
 
jbudorick
2016/09/01 18:48:01
You shouldn't need to set TARGET_BITS.
 
bsheedy
2016/09/01 21:24:26
Done.
 
 | |
| 2197 'TARGET_PLATFORM': 'android', | |
| 2198 }, | |
| 2199 'bot_type': 'tester', | |
| 2200 'parent_buildername': 'Android Builder (dbg)', | |
| 2201 'android_config': 'arm64_builder_mb' | |
| 
 
jbudorick
2016/09/01 18:48:01
I know I said to switch this from main_builder_mb,
 
bsheedy
2016/09/01 21:24:26
Done.
 
 | |
| 2202 'root_devices': True, | |
| 2203 'test_generators': [ | |
| 2204 steps.generate_gtest, | |
| 2205 steps.generate_script, | |
| 2206 steps.generate_isolated_script, | |
| 2207 steps.generate_instrumentation_test, | |
| 2208 ], | |
| 2209 'testing': { | |
| 2210 'platform': 'linux', | |
| 2211 }, | |
| 2212 }, | |
| 2190 | 2213 | 
| 2191 'Linux remote_run Builder': { | 2214 'Linux remote_run Builder': { | 
| 2192 'chromium_config': 'chromium', | 2215 'chromium_config': 'chromium', | 
| 2193 'chromium_apply_config': [ | 2216 'chromium_apply_config': [ | 
| 2194 'mb', | 2217 'mb', | 
| 2195 'ninja_confirm_noop', | 2218 'ninja_confirm_noop', | 
| 2196 'archive_gpu_tests', | 2219 'archive_gpu_tests', | 
| 2197 'chrome_with_codecs' | 2220 'chrome_with_codecs' | 
| 2198 ], | 2221 ], | 
| 2199 'gclient_config': 'chromium', | 2222 'gclient_config': 'chromium', | 
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2271 steps.generate_gtest, | 2294 steps.generate_gtest, | 
| 2272 steps.generate_script, | 2295 steps.generate_script, | 
| 2273 steps.generate_isolated_script, | 2296 steps.generate_isolated_script, | 
| 2274 ], | 2297 ], | 
| 2275 'testing': { 'platform': 'win', }, | 2298 'testing': { 'platform': 'win', }, | 
| 2276 'use_isolate': True, | 2299 'use_isolate': True, | 
| 2277 'enable_swarming': True, | 2300 'enable_swarming': True, | 
| 2278 }, | 2301 }, | 
| 2279 }, | 2302 }, | 
| 2280 } | 2303 } | 
| OLD | NEW |