| 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 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-v8', | 9 'build_gs_bucket': 'chromium-v8', |
| 10 }, | 10 }, |
| 11 'builders': { | 11 'builders': { |
| 12 'Chromium ASAN (symbolized)': { | 12 'Chromium ASAN (symbolized)': { |
| 13 'recipe_config': 'chromium_linux_asan', | 13 'recipe_config': 'chromium_linux_asan', |
| 14 'chromium_apply_config': [ | 14 'chromium_apply_config': [ |
| 15 'asan_symbolized', | 15 'asan_symbolized', |
| 16 'asan_coverage', | 16 'sanitizer_coverage', |
| 17 'chromium_asan_default_targets', | 17 'chromium_asan_default_targets', |
| 18 'v8_verify_heap', | 18 'v8_verify_heap', |
| 19 ], | 19 ], |
| 20 'gclient_apply_config': [ | 20 'gclient_apply_config': [ |
| 21 'v8_bleeding_edge_git', | 21 'v8_bleeding_edge_git', |
| 22 'chromium_lkcr', | 22 'chromium_lkcr', |
| 23 'show_v8_revision', | 23 'show_v8_revision', |
| 24 ], | 24 ], |
| 25 'chromium_config_kwargs': { | 25 'chromium_config_kwargs': { |
| 26 'BUILD_CONFIG': 'Release', | 26 'BUILD_CONFIG': 'Release', |
| 27 'TARGET_BITS': 64, | 27 'TARGET_BITS': 64, |
| 28 }, | 28 }, |
| 29 'bot_type': 'builder', | 29 'bot_type': 'builder', |
| 30 'disable_tests': True, | 30 'disable_tests': True, |
| 31 'cf_archive_build': True, | 31 'cf_archive_build': True, |
| 32 'cf_gs_bucket': 'gs://v8-asan', | 32 'cf_gs_bucket': 'gs://v8-asan', |
| 33 'cf_archive_name': 'asan-symbolized', | 33 'cf_archive_name': 'asan-symbolized', |
| 34 'cf_revision_dir': 'v8', | 34 'cf_revision_dir': 'v8', |
| 35 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, | 35 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, |
| 36 'testing': {'platform': 'linux'}, | 36 'testing': {'platform': 'linux'}, |
| 37 }, | 37 }, |
| 38 }, | 38 }, |
| 39 } | 39 } |
| OLD | NEW |