| 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 2068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2079 'gclient_apply_config': ['android'], | 2079 'gclient_apply_config': ['android'], |
| 2080 'chromium_config_kwargs': { | 2080 'chromium_config_kwargs': { |
| 2081 'BUILD_CONFIG': 'Debug', | 2081 'BUILD_CONFIG': 'Debug', |
| 2082 'TARGET_BITS': 32, | 2082 'TARGET_BITS': 32, |
| 2083 'TARGET_PLATFORM': 'android', | 2083 'TARGET_PLATFORM': 'android', |
| 2084 }, | 2084 }, |
| 2085 'bot_type': 'tester', | 2085 'bot_type': 'tester', |
| 2086 'parent_buildername': 'Android Builder (dbg)', | 2086 'parent_buildername': 'Android Builder (dbg)', |
| 2087 'android_config': 'incremental_coverage_builder_tests', | 2087 'android_config': 'incremental_coverage_builder_tests', |
| 2088 'root_devices': True, | 2088 'root_devices': True, |
| 2089 'checkout_dir': 'android', |
| 2089 'tests': [ | 2090 'tests': [ |
| 2090 steps.AndroidInstrumentationTest('AndroidWebViewTest'), | 2091 steps.AndroidInstrumentationTest('AndroidWebViewTest'), |
| 2091 steps.AndroidInstrumentationTest('ChromePublicTest'), | 2092 steps.AndroidInstrumentationTest('ChromePublicTest'), |
| 2092 steps.AndroidInstrumentationTest('ContentShellTest'), | 2093 steps.AndroidInstrumentationTest('ContentShellTest'), |
| 2093 steps.AndroidInstrumentationTest('ChromeSyncShellTest'), | 2094 steps.AndroidInstrumentationTest('ChromeSyncShellTest'), |
| 2094 steps.IncrementalCoverageTest(), | 2095 steps.IncrementalCoverageTest(), |
| 2095 ], | 2096 ], |
| 2096 'test_generators': [ | 2097 'test_generators': [ |
| 2097 steps.generate_gtest, | 2098 steps.generate_gtest, |
| 2098 steps.generate_script, | 2099 steps.generate_script, |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2228 steps.generate_gtest, | 2229 steps.generate_gtest, |
| 2229 steps.generate_script, | 2230 steps.generate_script, |
| 2230 steps.generate_isolated_script, | 2231 steps.generate_isolated_script, |
| 2231 ], | 2232 ], |
| 2232 'testing': { 'platform': 'win', }, | 2233 'testing': { 'platform': 'win', }, |
| 2233 'use_isolate': True, | 2234 'use_isolate': True, |
| 2234 'enable_swarming': True, | 2235 'enable_swarming': True, |
| 2235 }, | 2236 }, |
| 2236 }, | 2237 }, |
| 2237 } | 2238 } |
| OLD | NEW |