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

Side by Side Diff: base/base.gyp

Issue 296173006: Link the contents of tools/valgrind/tsan_v2/suppressions.txt into TSan binaries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix the 80-column limit Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | base/debug/OWNERS » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 982 matching lines...) Expand 10 before | Expand all | Expand 10 after
993 # Some targets may want to opt-out from ASan, TSan and MSan and link 993 # Some targets may want to opt-out from ASan, TSan and MSan and link
994 # without the corresponding runtime libraries. We drop the libc++ 994 # without the corresponding runtime libraries. We drop the libc++
995 # dependency and omit the compiler flags to avoid bringing instrumented 995 # dependency and omit the compiler flags to avoid bringing instrumented
996 # code to those targets. 996 # code to those targets.
997 'conditions': [ 997 'conditions': [
998 ['use_custom_libcxx==1', { 998 ['use_custom_libcxx==1', {
999 'dependencies!': [ 999 'dependencies!': [
1000 '../third_party/libc++/libc++.gyp:libcxx_proxy', 1000 '../third_party/libc++/libc++.gyp:libcxx_proxy',
1001 ], 1001 ],
1002 }], 1002 }],
1003 ['tsan==1', {
1004 'sources': [
1005 'debug/tsan_suppressions.cc',
1006 ],
1007 }],
1003 ], 1008 ],
1004 'cflags!': [ 1009 'cflags!': [
1005 '-fsanitize=address', 1010 '-fsanitize=address',
1006 '-fsanitize=thread', 1011 '-fsanitize=thread',
1007 '-fsanitize=memory', 1012 '-fsanitize=memory',
1008 '-fsanitize-memory-track-origins', 1013 '-fsanitize-memory-track-origins',
1009 ], 1014 ],
1010 'direct_dependent_settings': { 1015 'direct_dependent_settings': {
1011 'ldflags': [ 1016 'ldflags': [
1012 '-Wl,-u_sanitizer_options_link_helper', 1017 '-Wl,-u_sanitizer_options_link_helper',
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
1489 'base_unittests.isolate', 1494 'base_unittests.isolate',
1490 ], 1495 ],
1491 'sources': [ 1496 'sources': [
1492 'base_unittests.isolate', 1497 'base_unittests.isolate',
1493 ], 1498 ],
1494 }, 1499 },
1495 ], 1500 ],
1496 }], 1501 }],
1497 ], 1502 ],
1498 } 1503 }
OLDNEW
« no previous file with comments | « no previous file | base/debug/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698