| 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 2173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2184 steps.generate_instrumentation_test, | 2184 steps.generate_instrumentation_test, |
| 2185 ], | 2185 ], |
| 2186 'testing': { | 2186 'testing': { |
| 2187 'platform': 'linux', | 2187 'platform': 'linux', |
| 2188 }, | 2188 }, |
| 2189 'use_isolate': True, | 2189 'use_isolate': True, |
| 2190 'enable_swarming': True, | 2190 'enable_swarming': True, |
| 2191 }, | 2191 }, |
| 2192 'Win SyzyAsan (rel)': { | 2192 'Win SyzyAsan (rel)': { |
| 2193 'chromium_config': 'chromium', | 2193 'chromium_config': 'chromium', |
| 2194 'chromium_apply_config': ['syzyasan_compile_only', 'shared_library'], | 2194 'chromium_apply_config': [ |
| 2195 'mb', |
| 2196 'syzyasan_compile_only', |
| 2197 'shared_library', |
| 2198 ], |
| 2195 'gclient_config': 'chromium', | 2199 'gclient_config': 'chromium', |
| 2196 'chromium_config_kwargs': { | 2200 'chromium_config_kwargs': { |
| 2197 'BUILD_CONFIG': 'Release', | 2201 'BUILD_CONFIG': 'Release', |
| 2198 'TARGET_PLATFORM': 'win', | 2202 'TARGET_PLATFORM': 'win', |
| 2199 'TARGET_BITS': 32, | 2203 'TARGET_BITS': 32, |
| 2200 }, | 2204 }, |
| 2201 'compile_targets': [ | 2205 'compile_targets': [ |
| 2202 'chrome', | 2206 'chrome', |
| 2203 ], | 2207 ], |
| 2204 'enable_swarming': True, | 2208 'enable_swarming': True, |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2291 steps.generate_gtest, | 2295 steps.generate_gtest, |
| 2292 steps.generate_script, | 2296 steps.generate_script, |
| 2293 steps.generate_isolated_script, | 2297 steps.generate_isolated_script, |
| 2294 ], | 2298 ], |
| 2295 'testing': { 'platform': 'win', }, | 2299 'testing': { 'platform': 'win', }, |
| 2296 'use_isolate': True, | 2300 'use_isolate': True, |
| 2297 'enable_swarming': True, | 2301 'enable_swarming': True, |
| 2298 }, | 2302 }, |
| 2299 }, | 2303 }, |
| 2300 } | 2304 } |
| OLD | NEW |