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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 127 'TARGET_BITS': 64, | 127 'TARGET_BITS': 64, |
| 128 }, | 128 }, |
| 129 'bot_type': 'builder_tester', | 129 'bot_type': 'builder_tester', |
| 130 'compile_targets': [ | 130 'compile_targets': [ |
| 131 'all', | 131 'all', |
| 132 ], | 132 ], |
| 133 'testing': { | 133 'testing': { |
| 134 'platform': 'linux', | 134 'platform': 'linux', |
| 135 }, | 135 }, |
| 136 }, | 136 }, |
| 137 # There are no slaves for this builder and this builder doesn't | |
| 138 # appear on the actual continuous waterfall; this configuration | |
| 139 # is here so that a try bot can be added. | |
| 140 'WebKit Linux slimming_paint_v2 Dummy Builder': { | |
| 141 'chromium_config': 'chromium', | |
| 142 'chromium_apply_config': ['mb','ninja_confirm_noop'], | |
| 143 'gclient_config': 'chromium', | |
| 144 'chromium_config_kwargs': { | |
| 145 'BUILD_CONFIG': 'Release', | |
| 146 'TARGET_BITS': 64, | |
| 147 }, | |
| 148 'compile_targets': [ | |
| 149 'blink_tests', | |
| 150 ], | |
| 151 'test_generators': [ | |
| 152 steps.generate_gtest, | |
| 153 steps.generate_script, | |
| 154 ], | |
| 155 'tests': [ | |
| 156 steps.BlinkTest(extra_args=[ | |
| 157 '--enable-wptserve', | |
| 158 ]), | |
|
Dirk Pranke
2016/07/26 18:40:48
Do you really want --enable-wptserve here?
qyearsley
2016/07/26 22:10:33
Nope; I copied and pasted a section of code and ap
| |
| 159 ], | |
| 160 'testing': { | |
| 161 'platform': 'linux', | |
| 162 }, | |
| 163 'enable_swarming': True, | |
| 164 'use_isolate': True, | |
| 165 }, | |
| 137 'WebKit Linux - WPTServe':{ | 166 'WebKit Linux - WPTServe':{ |
| 138 'chromium_config': 'chromium', | 167 'chromium_config': 'chromium', |
| 139 'chromium_apply_config': ['mb','ninja_confirm_noop'], | 168 'chromium_apply_config': ['mb','ninja_confirm_noop'], |
| 140 'gclient_config': 'chromium', | 169 'gclient_config': 'chromium', |
| 141 'chromium_config_kwargs': { | 170 'chromium_config_kwargs': { |
| 142 'BUILD_CONFIG': 'Release', | 171 'BUILD_CONFIG': 'Release', |
| 143 'TARGET_BITS': 64, | 172 'TARGET_BITS': 64, |
| 144 }, | 173 }, |
| 145 'compile_targets': [ | 174 'compile_targets': [ |
| 146 'blink_tests', | 175 'blink_tests', |
| (...skipping 2106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2253 steps.generate_gtest, | 2282 steps.generate_gtest, |
| 2254 steps.generate_script, | 2283 steps.generate_script, |
| 2255 steps.generate_isolated_script, | 2284 steps.generate_isolated_script, |
| 2256 ], | 2285 ], |
| 2257 'testing': { 'platform': 'win', }, | 2286 'testing': { 'platform': 'win', }, |
| 2258 'use_isolate': True, | 2287 'use_isolate': True, |
| 2259 'enable_swarming': True, | 2288 'enable_swarming': True, |
| 2260 }, | 2289 }, |
| 2261 }, | 2290 }, |
| 2262 } | 2291 } |
| OLD | NEW |