Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: scripts/slave/recipe_modules/chromium/client_v8_branches.py

Issue 952653003: Change asan_coverage(deprecated) flag to sanitizer_coverage. Enable edge-level code coverage by def… (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: rebase with recipe_simulation_test.py Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW
« no previous file with comments | « masters/master.client.v8.branches/master.cfg ('k') | scripts/slave/recipe_modules/chromium/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698