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

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

Issue 2184683004: [gn] Fix sanitizer configs (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add blacklist files Created 4 years, 4 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 | « no previous file | tools/memory/asan/blacklist.txt » ('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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 'gn_args': 'target_cpu="arm"', 397 'gn_args': 'target_cpu="arm"',
398 'gyp_defines': 'target_arch=arm', 398 'gyp_defines': 'target_arch=arm',
399 }, 399 },
400 400
401 'arm64': { 401 'arm64': {
402 'gn_args': 'target_cpu="arm64"', 402 'gn_args': 'target_cpu="arm64"',
403 'gyp_defines': 'target_arch=arm64', 403 'gyp_defines': 'target_arch=arm64',
404 }, 404 },
405 405
406 'asan': { 406 'asan': {
407 'gn_args': 'is_clang=true asan=true', 407 'gn_args': 'is_asan=true',
408 'gyp_defines': 'clang=1 asan=1', 408 'gyp_defines': 'clang=1 asan=1',
409 }, 409 },
410 410
411 'bb': { 411 'bb': {
412 'gn_args': 'sanitizer_coverage_flags="bb"', 412 'gn_args': 'sanitizer_coverage_flags="bb"',
413 'gyp_defines': 'sanitizer_coverage=bb', 413 'gyp_defines': 'sanitizer_coverage=bb',
414 }, 414 },
415 415
416 'cfi': { 416 'cfi': {
417 'gn_args': 'is_cfi=true use_cfi_diag=true', 417 'gn_args': 'is_cfi=true use_cfi_diag=true',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 }, 476 },
477 477
478 'gyp': {'type': 'gyp'}, 478 'gyp': {'type': 'gyp'},
479 479
480 'hard_float': { 480 'hard_float': {
481 'gn_args': 'arm_float_abi="hard"', 481 'gn_args': 'arm_float_abi="hard"',
482 'gyp_defines': 'arm_float_abi=hard', 482 'gyp_defines': 'arm_float_abi=hard',
483 }, 483 },
484 484
485 'lsan': { 485 'lsan': {
486 'gn_args': 'lsan=true', 486 'gn_args': 'is_lsan=true',
487 'gyp_defines': 'lsan=1', 487 'gyp_defines': 'lsan=1',
488 }, 488 },
489 489
490 'minimal_symbols': { 490 'minimal_symbols': {
491 'gn_args': 'symbol_level=1', 491 'gn_args': 'symbol_level=1',
492 'gyp_defines': 'fastbuild=1', 492 'gyp_defines': 'fastbuild=1',
493 }, 493 },
494 494
495 'mips': { 495 'mips': {
496 'gn_args': 'target_cpu="mips"', 496 'gn_args': 'target_cpu="mips"',
497 'gyp_defines': 'target_arch=mips', 497 'gyp_defines': 'target_arch=mips',
498 }, 498 },
499 499
500 'msan': { 500 'msan': {
501 'gn_args': 'is_clang=true msan=true', 501 'gn_args': 'is_msan=true',
502 'gyp_defines': 'clang=1 msan=1', 502 'gyp_defines': 'clang=1 msan=1',
503 }, 503 },
504 504
505 'release': { 505 'release': {
506 'gn_args': 'is_debug=false', 506 'gn_args': 'is_debug=false',
507 }, 507 },
508 508
509 'release_bot': { 509 'release_bot': {
510 'mixins': ['release', 'static', 'goma'], 510 'mixins': ['release', 'static', 'goma'],
511 }, 511 },
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 }, 575 },
576 576
577 # TODO(machenbach): Remove the symbolized config after the bots are gone. 577 # TODO(machenbach): Remove the symbolized config after the bots are gone.
578 'symbolized': { 578 'symbolized': {
579 'gn_args': 'symbolized=true', 579 'gn_args': 'symbolized=true',
580 'gyp_defines': 580 'gyp_defines':
581 'release_extra_cflags="-fno-inline-functions -fno-inline"', 581 'release_extra_cflags="-fno-inline-functions -fno-inline"',
582 }, 582 },
583 583
584 'tsan': { 584 'tsan': {
585 'gn_args': 'is_clang=true tsan=true', 585 'gn_args': 'is_tsan=true',
586 'gyp_defines': 'clang=1 tsan=1', 586 'gyp_defines': 'clang=1 tsan=1',
587 }, 587 },
588 588
589 'valgrind': { 589 'valgrind': {
590 'gn_args': 'v8_has_valgrind=true', 590 'gn_args': 'v8_has_valgrind=true',
591 'gyp_defines': 'has_valgrind=1', 591 'gyp_defines': 'has_valgrind=1',
592 }, 592 },
593 593
594 'v8_no_i18n': { 594 'v8_no_i18n': {
595 'gn_args': 'v8_enable_i18n_support=false', 595 'gn_args': 'v8_enable_i18n_support=false',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 'gn_args': 'target_cpu="x64"', 658 'gn_args': 'target_cpu="x64"',
659 'gyp_defines': 'target_arch=x64', 659 'gyp_defines': 'target_arch=x64',
660 }, 660 },
661 661
662 'x86': { 662 'x86': {
663 'gn_args': 'target_cpu="x86"', 663 'gn_args': 'target_cpu="x86"',
664 'gyp_defines': 'target_arch=ia32', 664 'gyp_defines': 'target_arch=ia32',
665 }, 665 },
666 }, 666 },
667 } 667 }
OLDNEW
« no previous file with comments | « no previous file | tools/memory/asan/blacklist.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698