OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |