| 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 SPEC = { | 9 SPEC = { |
| 10 'builders': { | 10 'builders': { |
| 11 'Win SyzyASAN LKGR': { | 11 'Win SyzyASAN LKGR': { |
| 12 'chromium_config': 'chromium_no_goma', | 12 'chromium_config': 'chromium_no_goma', |
| 13 'chromium_apply_config': ['clobber', 'mb', 'syzyasan'], | 13 'chromium_apply_config': ['clobber', 'mb', 'syzyasan'], |
| 14 'gclient_config': 'chromium', | 14 'gclient_config': 'chromium', |
| 15 'chromium_config_kwargs': { | 15 'chromium_config_kwargs': { |
| 16 'BUILD_CONFIG': 'Release', | 16 'BUILD_CONFIG': 'Release', |
| 17 'TARGET_BITS': 32, | 17 'TARGET_BITS': 32, |
| 18 }, | 18 }, |
| 19 'bot_type': 'builder', | 19 'bot_type': 'builder', |
| 20 'disable_tests': True, | 20 'disable_tests': True, |
| 21 'cf_archive_build': True, | 21 'cf_archive_build': True, |
| 22 'cf_gs_bucket': 'chromium-browser-syzyasan', | 22 'cf_gs_bucket': 'chromium-browser-syzyasan', |
| 23 'cf_gs_acl': 'public-read', | 23 'cf_gs_acl': 'public-read', |
| 24 'cf_archive_name': 'asan', | 24 'cf_archive_name': 'asan', |
| 25 'compile_targets': [ | 25 'compile_targets': [ 'chromium_builder_asan' ], |
| 26 'chromium_builder_asan', | 26 'testing': { 'platform': 'win' }, |
| 27 ], | 27 }, |
| 28 'testing': { | 28 'UBSan Release': { |
| 29 'platform': 'win', | 29 'chromium_config': 'chromium_linux_ubsan', |
| 30 'chromium_apply_config': ['mb'], |
| 31 'gclient_config': 'chromium', |
| 32 'chromium_config_kwargs': { |
| 33 'BUILD_CONFIG': 'Release', |
| 34 'TARGET_BITS': 64, |
| 30 }, | 35 }, |
| 36 'bot_type': 'builder', |
| 37 'disable_tests': True, |
| 38 'cf_archive_build': True, |
| 39 'cf_gs_bucket': 'chromium-browser-ubsan', |
| 40 'cf_gs_acl': 'public-read', |
| 41 'cf_archive_name': 'ubsan', |
| 42 'compile_targets': [ 'chromium_builder_asan' ], |
| 43 'testing': { 'platform': 'linux' }, |
| 44 }, |
| 45 # The build process for UBSan vptr is described at |
| 46 # http://dev.chromium.org/developers/testing/undefinedbehaviorsanitizer |
| 47 'UBSan vptr Release': { |
| 48 'chromium_config': 'chromium_linux_ubsan_vptr', |
| 49 'chromium_apply_config': ['mb'], |
| 50 'gclient_config': 'chromium', |
| 51 'chromium_config_kwargs': { |
| 52 'BUILD_CONFIG': 'Release', |
| 53 'TARGET_BITS': 64, |
| 54 }, |
| 55 'bot_type': 'builder', |
| 56 'disable_tests': True, |
| 57 'cf_archive_build': True, |
| 58 'cf_gs_bucket': 'chromium-browser-ubsan', |
| 59 'cf_gs_acl': 'public-read', |
| 60 'cf_archive_name': 'ubsan-vptr', |
| 61 'cf_archive_subdir_suffix': 'vptr', |
| 62 'compile_targets': [ 'chromium_builder_asan' ], |
| 63 'testing': { 'platform': 'linux' }, |
| 31 }, | 64 }, |
| 32 }, | 65 }, |
| 33 } | 66 } |
| OLD | NEW |