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

Side by Side Diff: infra/mb/mb_config.pyl

Issue 2860653002: Use new sanitizer coverage flags. (Closed)
Patch Set: one more Created 3 years, 7 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
« no previous file with comments | « gypfiles/coverage_wrapper.py ('k') | tools/testrunner/testrunner.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The V8 project authors. All rights reserved. 1 # Copyright 2016 The V8 project 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 { 5 {
6 # This is a map of buildbot master names -> buildbot builder names -> 6 # This is a map of buildbot master names -> buildbot builder names ->
7 # config names (where each config name is a key in the 'configs' dict, 7 # config names (where each config name is a key in the 'configs' dict,
8 # below). MB uses this dict to look up which config to use for a given bot. 8 # below). MB uses this dict to look up which config to use for a given bot.
9 # Bots are ordered by appearance on waterfall. 9 # Bots are ordered by appearance on waterfall.
10 'masters': { 10 'masters': {
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 'gn_args': 'target_cpu="arm64"', 492 'gn_args': 'target_cpu="arm64"',
493 'gyp_defines': 'target_arch=arm64', 493 'gyp_defines': 'target_arch=arm64',
494 }, 494 },
495 495
496 'asan': { 496 'asan': {
497 'gn_args': 'is_asan=true', 497 'gn_args': 'is_asan=true',
498 'gyp_defines': 'clang=1 asan=1', 498 'gyp_defines': 'clang=1 asan=1',
499 }, 499 },
500 500
501 'bb': { 501 'bb': {
502 'gn_args': 'sanitizer_coverage_flags="bb"', 502 'gn_args': 'sanitizer_coverage_flags="bb,trace-pc-guard"',
503 'gyp_defines': 'sanitizer_coverage=bb', 503 'gyp_defines': 'sanitizer_coverage=bb,trace-pc-guard',
504 }, 504 },
505 505
506 'cfi': { 506 'cfi': {
507 'gn_args': 'is_cfi=true use_cfi_diag=true', 507 'gn_args': 'is_cfi=true use_cfi_diag=true',
508 'gyp_defines': 'cfi_vptr=1 cfi_diag=1', 508 'gyp_defines': 'cfi_vptr=1 cfi_diag=1',
509 }, 509 },
510 510
511 'clang': { 511 'clang': {
512 'gn_args': 'is_clang=true', 512 'gn_args': 'is_clang=true',
513 'gyp_defines': 'clang=1', 513 'gyp_defines': 'clang=1',
(...skipping 28 matching lines...) Expand all
542 'mixins': [ 542 'mixins': [
543 'debug', 'static', 'goma', 'v8_enable_slow_dchecks', 543 'debug', 'static', 'goma', 'v8_enable_slow_dchecks',
544 'v8_optimized_debug'], 544 'v8_optimized_debug'],
545 }, 545 },
546 546
547 'debug_trybot': { 547 'debug_trybot': {
548 'mixins': ['debug_bot', 'minimal_symbols'], 548 'mixins': ['debug_bot', 'minimal_symbols'],
549 }, 549 },
550 550
551 'edge': { 551 'edge': {
552 'gn_args': 'sanitizer_coverage_flags="edge"', 552 'gn_args': 'sanitizer_coverage_flags="trace-pc-guard"',
553 'gyp_defines': 'sanitizer_coverage=edge', 553 'gyp_defines': 'sanitizer_coverage=trace-pc-guard',
554 }, 554 },
555 555
556 'gcc': { 556 'gcc': {
557 'gn_args': 'is_clang=false use_sysroot=false', 557 'gn_args': 'is_clang=false use_sysroot=false',
558 'gyp_defines': 'clang=0', 558 'gyp_defines': 'clang=0',
559 }, 559 },
560 560
561 'gcmole': { 561 'gcmole': {
562 'gn_args': 'v8_gcmole=true', 562 'gn_args': 'v8_gcmole=true',
563 'gyp_defines': 'gcmole=1', 563 'gyp_defines': 'gcmole=1',
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 'gn_args': 'target_cpu="x64"', 766 'gn_args': 'target_cpu="x64"',
767 'gyp_defines': 'target_arch=x64', 767 'gyp_defines': 'target_arch=x64',
768 }, 768 },
769 769
770 'x86': { 770 'x86': {
771 'gn_args': 'target_cpu="x86"', 771 'gn_args': 'target_cpu="x86"',
772 'gyp_defines': 'target_arch=ia32', 772 'gyp_defines': 'target_arch=ia32',
773 }, 773 },
774 }, 774 },
775 } 775 }
OLDNEW
« no previous file with comments | « gypfiles/coverage_wrapper.py ('k') | tools/testrunner/testrunner.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698