| 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_PLATFORM': 'android', | 
 |  2197       }, | 
 |  2198       'bot_type': 'tester', | 
 |  2199       'parent_buildername': 'Android Builder (dbg)', | 
 |  2200       'android_config': 'main_builder_mb', | 
 |  2201       'root_devices': True, | 
 |  2202       'test_generators': [ | 
 |  2203         steps.generate_gtest, | 
 |  2204         steps.generate_script, | 
 |  2205         steps.generate_isolated_script, | 
 |  2206         steps.generate_instrumentation_test, | 
 |  2207       ], | 
 |  2208       'testing': { | 
 |  2209         'platform': 'linux', | 
 |  2210       }, | 
 |  2211     }, | 
|  2190  |  2212  | 
|  2191     'Linux remote_run Builder': { |  2213     'Linux remote_run Builder': { | 
|  2192       'chromium_config': 'chromium', |  2214       'chromium_config': 'chromium', | 
|  2193       'chromium_apply_config': [ |  2215       'chromium_apply_config': [ | 
|  2194         'mb', |  2216         'mb', | 
|  2195         'ninja_confirm_noop', |  2217         'ninja_confirm_noop', | 
|  2196         'archive_gpu_tests', |  2218         'archive_gpu_tests', | 
|  2197         'chrome_with_codecs' |  2219         'chrome_with_codecs' | 
|  2198       ], |  2220       ], | 
|  2199       'gclient_config': 'chromium', |  2221       'gclient_config': 'chromium', | 
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  2271         steps.generate_gtest, |  2293         steps.generate_gtest, | 
|  2272         steps.generate_script, |  2294         steps.generate_script, | 
|  2273         steps.generate_isolated_script, |  2295         steps.generate_isolated_script, | 
|  2274       ], |  2296       ], | 
|  2275       'testing': { 'platform': 'win', }, |  2297       'testing': { 'platform': 'win', }, | 
|  2276       'use_isolate': True, |  2298       'use_isolate': True, | 
|  2277       'enable_swarming': True, |  2299       'enable_swarming': True, | 
|  2278     }, |  2300     }, | 
|  2279   }, |  2301   }, | 
|  2280 } |  2302 } | 
| OLD | NEW |