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

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

Issue 1644743002: [mb] Add missing GN args for MSan (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 { 5 {
6 # This is the list of configs that you can pass to mb; each config 6 # This is the list of configs that you can pass to mb; each config
7 # represents a particular combination of GYP_DEFINES/gn args that 7 # represents a particular combination of GYP_DEFINES/gn args that
8 # we must support. A given config *may* be platform-specific but 8 # we must support. A given config *may* be platform-specific but
9 # is not necessarily so (i.e., we might have mac, win, and linux 9 # is not necessarily so (i.e., we might have mac, win, and linux
10 # bots all using the 'gn_release_bot' config). 10 # bots all using the 'gn_release_bot' config).
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 'gn_args': 'symbol_level=1', 309 'gn_args': 'symbol_level=1',
310 'gyp_defines': 'fastbuild=1', 310 'gyp_defines': 'fastbuild=1',
311 }, 311 },
312 312
313 'mipsel': { 313 'mipsel': {
314 'gn_args': 'target_cpu="mipsel"', 314 'gn_args': 'target_cpu="mipsel"',
315 'gyp_defines': 'target_arch=mipsel', 315 'gyp_defines': 'target_arch=mipsel',
316 }, 316 },
317 317
318 'msan': { 318 'msan': {
319 'gn_args': 'is_msan=true', 319 'gn_args': 'is_msan=true msan_track_origins=2 use_prebuilt_instrumented_li braries=true',
320 'gyp_defines': 'msan=1 msan_track_origins=2 use_prebuilt_instrumented_libr aries=1', 320 'gyp_defines': 'msan=1 msan_track_origins=2 use_prebuilt_instrumented_libr aries=1',
321 }, 321 },
322 322
323 'no_symbols': { 323 'no_symbols': {
324 'gn_args': 'symbol_level=0', 324 'gn_args': 'symbol_level=0',
325 'gyp_defines': 'fastbuild=2', 325 'gyp_defines': 'fastbuild=2',
326 }, 326 },
327 327
328 'oilpan': { 328 'oilpan': {
329 'gn_args': 'enable_oilpan=true', 329 'gn_args': 'enable_oilpan=true',
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 'win8_chromium_gn_upload': 'gn_release_bot_minimal_symbols_x86', 689 'win8_chromium_gn_upload': 'gn_release_bot_minimal_symbols_x86',
690 'win_clang_x64_dbg': 'win_clang_debug_bot', 690 'win_clang_x64_dbg': 'win_clang_debug_bot',
691 }, 691 },
692 'tryserver.v8': { 692 'tryserver.v8': {
693 'v8_linux_chromium_gn_rel': 'gn_release_trybot', 693 'v8_linux_chromium_gn_rel': 'gn_release_trybot',
694 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot', 694 'v8_android_chromium_gn_dbg': 'android_gn_debug_bot',
695 'v8_linux_blink_rel': 'swarming_gn_release_trybot_minimal_symbols_x64', 695 'v8_linux_blink_rel': 'swarming_gn_release_trybot_minimal_symbols_x64',
696 }, 696 },
697 }, 697 },
698 } 698 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698