| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 from . import steps | |
| 6 | |
| 7 RESULTS_URL = 'https://chromeperf.appspot.com' | |
| 8 | |
| 9 SPEC = { | |
| 10 'builders': { | |
| 11 'Win SyzyASAN LKGR': { | |
| 12 'chromium_config': 'chromium_no_goma', | |
| 13 'chromium_apply_config': ['syzyasan', 'clobber'], | |
| 14 'gclient_config': 'chromium', | |
| 15 'chromium_config_kwargs': { | |
| 16 'BUILD_CONFIG': 'Release', | |
| 17 'TARGET_BITS': 32, | |
| 18 }, | |
| 19 'bot_type': 'builder', | |
| 20 'disable_tests': True, | |
| 21 'cf_archive_build': True, | |
| 22 'cf_gs_bucket': 'chromium-browser-syzyasan', | |
| 23 'cf_gs_acl': 'public-read', | |
| 24 'cf_archive_name': 'asan', | |
| 25 'compile_targets': [ | |
| 26 'chromium_builder_asan', | |
| 27 ], | |
| 28 'testing': { | |
| 29 'platform': 'win', | |
| 30 }, | |
| 31 }, | |
| 32 }, | |
| 33 } | |
| OLD | NEW |