| 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 2074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2085 steps.generate_gtest, | 2085 steps.generate_gtest, |
| 2086 steps.generate_script, | 2086 steps.generate_script, |
| 2087 steps.generate_isolated_script, | 2087 steps.generate_isolated_script, |
| 2088 ], | 2088 ], |
| 2089 'testing': { | 2089 'testing': { |
| 2090 'platform': 'win', | 2090 'platform': 'win', |
| 2091 }, | 2091 }, |
| 2092 }, | 2092 }, |
| 2093 'Android Coverage (dbg)': { | 2093 'Android Coverage (dbg)': { |
| 2094 'chromium_config': 'android', | 2094 'chromium_config': 'android', |
| 2095 'chromium_apply_config': ['mb'], |
| 2095 'gclient_config': 'chromium', | 2096 'gclient_config': 'chromium', |
| 2096 'gclient_apply_config': ['android'], | 2097 'gclient_apply_config': ['android'], |
| 2097 'chromium_config_kwargs': { | 2098 'chromium_config_kwargs': { |
| 2098 'BUILD_CONFIG': 'Debug', | 2099 'BUILD_CONFIG': 'Debug', |
| 2099 'TARGET_BITS': 32, | 2100 'TARGET_BITS': 32, |
| 2100 'TARGET_PLATFORM': 'android', | 2101 'TARGET_PLATFORM': 'android', |
| 2101 }, | 2102 }, |
| 2102 'bot_type': 'tester', | 2103 'bot_type': 'tester', |
| 2103 'parent_buildername': 'Android Builder (dbg)', | 2104 'parent_buildername': 'Android Builder (dbg)', |
| 2104 'android_config': 'incremental_coverage_builder_tests', | 2105 'android_config': 'incremental_coverage_builder_tests', |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2157 'enable_swarming': True, | 2158 'enable_swarming': True, |
| 2158 'testing': { | 2159 'testing': { |
| 2159 'platform': 'win', | 2160 'platform': 'win', |
| 2160 }, | 2161 }, |
| 2161 }, | 2162 }, |
| 2162 | 2163 |
| 2163 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, | 2164 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, |
| 2164 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, | 2165 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, |
| 2165 }, | 2166 }, |
| 2166 } | 2167 } |
| OLD | NEW |