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

Side by Side Diff: base/base.gyp

Issue 339663009: MSan: introduce a GYP flag to control origin tracking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | build/common.gypi » ('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 988 matching lines...) Expand 10 before | Expand all | Expand 10 after
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', { 1003 ['tsan==1', {
1004 'sources': [ 1004 'sources': [
1005 'debug/tsan_suppressions.cc', 1005 'debug/tsan_suppressions.cc',
1006 ], 1006 ],
1007 }], 1007 }],
1008 ], 1008 ],
1009 'cflags!': [ 1009 'cflags/': [
1010 '-fsanitize=address', 1010 ['exclude', '-fsanitize='],
1011 '-fsanitize=thread', 1011 ['exclude', '-fsanitize-'],
1012 '-fsanitize=memory',
1013 '-fsanitize-memory-track-origins',
1014 ], 1012 ],
1015 'direct_dependent_settings': { 1013 'direct_dependent_settings': {
1016 'ldflags': [ 1014 'ldflags': [
1017 '-Wl,-u_sanitizer_options_link_helper', 1015 '-Wl,-u_sanitizer_options_link_helper',
1018 ], 1016 ],
1019 }, 1017 },
1020 }, 1018 },
1021 ], 1019 ],
1022 'conditions': [ 1020 'conditions': [
1023 ['OS!="ios"', { 1021 ['OS!="ios"', {
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
1499 'base_unittests.isolate', 1497 'base_unittests.isolate',
1500 ], 1498 ],
1501 'sources': [ 1499 'sources': [
1502 'base_unittests.isolate', 1500 'base_unittests.isolate',
1503 ], 1501 ],
1504 }, 1502 },
1505 ], 1503 ],
1506 }], 1504 }],
1507 ], 1505 ],
1508 } 1506 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698