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

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

Issue 2109423002: Revert of [gn] Fix valgrind config (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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 | « gni/isolate.gni ('k') | no next file » | 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 'gyp_defines': 537 'gyp_defines':
538 'release_extra_cflags="-fno-inline-functions -fno-inline"', 538 'release_extra_cflags="-fno-inline-functions -fno-inline"',
539 }, 539 },
540 540
541 'tsan': { 541 'tsan': {
542 'gn_args': 'clang=true tsan=true', 542 'gn_args': 'clang=true tsan=true',
543 'gyp_defines': 'clang=1 tsan=1', 543 'gyp_defines': 'clang=1 tsan=1',
544 }, 544 },
545 545
546 'valgrind': { 546 'valgrind': {
547 'gn_args': 'v8_has_valgrind=true', 547 # TODO(machenbach): Add this to gn.
548 'gn_args': 'has_valgrind=true',
548 'gyp_defines': 'has_valgrind=1', 549 'gyp_defines': 'has_valgrind=1',
549 }, 550 },
550 551
551 'v8_no_i18n': { 552 'v8_no_i18n': {
552 'gn_args': 'v8_enable_i18n_support=false', 553 'gn_args': 'v8_enable_i18n_support=false',
553 'gyp_defines': 'v8_enable_i18n_support=0', 554 'gyp_defines': 'v8_enable_i18n_support=0',
554 }, 555 },
555 556
556 'v8_enable_disassembler': { 557 'v8_enable_disassembler': {
557 'gn_args': 'v8_enable_disassembler=true', 558 'gn_args': 'v8_enable_disassembler=true',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 'gn_args': 'target_cpu="x64"', 614 'gn_args': 'target_cpu="x64"',
614 'gyp_defines': 'target_arch=x64', 615 'gyp_defines': 'target_arch=x64',
615 }, 616 },
616 617
617 'x86': { 618 'x86': {
618 'gn_args': 'target_cpu="x86"', 619 'gn_args': 'target_cpu="x86"',
619 'gyp_defines': 'target_arch=ia32', 620 'gyp_defines': 'target_arch=ia32',
620 }, 621 },
621 }, 622 },
622 } 623 }
OLDNEW
« no previous file with comments | « gni/isolate.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698