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

Side by Side Diff: trunk/src/base/base.gyp

Issue 215363006: Revert 259561 "Set the default ASan options for executables buil..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 9 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 | trunk/src/base/debug/sanitizer_options.cc » ('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 991 matching lines...) Expand 10 before | Expand all | Expand 10 after
1002 'dependencies': [ 1002 'dependencies': [
1003 # Needed to handle the #include chain: 1003 # Needed to handle the #include chain:
1004 # base/test/perf_test_suite.h 1004 # base/test/perf_test_suite.h
1005 # base/test/test_suite.h 1005 # base/test/test_suite.h
1006 # gtk/gtk.h 1006 # gtk/gtk.h
1007 '../build/linux/system.gyp:gtk', 1007 '../build/linux/system.gyp:gtk',
1008 ], 1008 ],
1009 }], 1009 }],
1010 ], 1010 ],
1011 }, 1011 },
1012 {
1013 'target_name': 'sanitizer_options',
1014 'type': 'static_library',
1015 'variables': {
1016 # Every target is going to depend on sanitizer_options, so allow
1017 # this one to depend on itself.
1018 'prune_self_dependency': 1,
1019 # Do not let 'none' targets depend on this one, they don't need to.
1020 'link_dependency': 1,
1021 },
1022 'sources': [
1023 'debug/sanitizer_options.cc',
1024 ],
1025 'include_dirs': [
1026 '..',
1027 ],
1028 'cflags!': [
1029 '-fsanitize=address',
1030 ],
1031 'direct_dependent_settings': {
1032 'ldflags': [
1033 '-Wl,-u_sanitizer_options_link_helper',
1034 ],
1035 },
1036 },
1037 ], 1012 ],
1038 'conditions': [ 1013 'conditions': [
1039 ['OS!="ios"', { 1014 ['OS!="ios"', {
1040 'targets': [ 1015 'targets': [
1041 { 1016 {
1042 'target_name': 'check_example', 1017 'target_name': 'check_example',
1043 'type': 'executable', 1018 'type': 'executable',
1044 'sources': [ 1019 'sources': [
1045 'check_example.cc', 1020 'check_example.cc',
1046 ], 1021 ],
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
1490 'base_unittests.isolate', 1465 'base_unittests.isolate',
1491 ], 1466 ],
1492 'sources': [ 1467 'sources': [
1493 'base_unittests.isolate', 1468 'base_unittests.isolate',
1494 ], 1469 ],
1495 }, 1470 },
1496 ], 1471 ],
1497 }], 1472 }],
1498 ], 1473 ],
1499 } 1474 }
OLDNEW
« no previous file with comments | « no previous file | trunk/src/base/debug/sanitizer_options.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698