| 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 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1024 'dependencies': [ | 1024 'dependencies': [ |
| 1025 # Needed to handle the #include chain: | 1025 # Needed to handle the #include chain: |
| 1026 # base/test/perf_test_suite.h | 1026 # base/test/perf_test_suite.h |
| 1027 # base/test/test_suite.h | 1027 # base/test/test_suite.h |
| 1028 # gtk/gtk.h | 1028 # gtk/gtk.h |
| 1029 '../build/linux/system.gyp:gtk', | 1029 '../build/linux/system.gyp:gtk', |
| 1030 ], | 1030 ], |
| 1031 }], | 1031 }], |
| 1032 ], | 1032 ], |
| 1033 }, | 1033 }, |
| 1034 { | |
| 1035 'target_name': 'sanitizer_options', | |
| 1036 'type': 'static_library', | |
| 1037 'variables': { | |
| 1038 # Every target is going to depend on sanitizer_options, so allow | |
| 1039 # this one to depend on itself. | |
| 1040 'prune_self_dependency': 1, | |
| 1041 }, | |
| 1042 'sources': [ | |
| 1043 'debug/sanitizer_options.cc', | |
| 1044 ], | |
| 1045 'include_dirs': [ | |
| 1046 '..', | |
| 1047 ], | |
| 1048 'cflags!': [ | |
| 1049 '-fsanitize=address', | |
| 1050 ], | |
| 1051 'direct_dependent_settings': { | |
| 1052 'ldflags': [ | |
| 1053 '-Wl,-u_sanitizer_options_link_helper', | |
| 1054 ], | |
| 1055 }, | |
| 1056 }, | |
| 1057 ], | 1034 ], |
| 1058 'conditions': [ | 1035 'conditions': [ |
| 1059 ['OS!="ios"', { | 1036 ['OS!="ios"', { |
| 1060 'targets': [ | 1037 'targets': [ |
| 1061 { | 1038 { |
| 1062 'target_name': 'check_example', | 1039 'target_name': 'check_example', |
| 1063 'type': 'executable', | 1040 'type': 'executable', |
| 1064 'sources': [ | 1041 'sources': [ |
| 1065 'check_example.cc', | 1042 'check_example.cc', |
| 1066 ], | 1043 ], |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1393 'base_unittests.isolate', | 1370 'base_unittests.isolate', |
| 1394 ], | 1371 ], |
| 1395 'sources': [ | 1372 'sources': [ |
| 1396 'base_unittests.isolate', | 1373 'base_unittests.isolate', |
| 1397 ], | 1374 ], |
| 1398 }, | 1375 }, |
| 1399 ], | 1376 ], |
| 1400 }], | 1377 }], |
| 1401 ], | 1378 ], |
| 1402 } | 1379 } |
| OLD | NEW |