OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'sanitizer_options', | 8 'target_name': 'sanitizer_options', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'toolsets': ['host', 'target'], | 10 'toolsets': ['host', 'target'], |
(...skipping 18 matching lines...) Expand all Loading... |
29 ['use_custom_libcxx==1', { | 29 ['use_custom_libcxx==1', { |
30 'dependencies!': [ | 30 'dependencies!': [ |
31 '../../buildtools/third_party/libc++/libc++.gyp:libcxx_proxy', | 31 '../../buildtools/third_party/libc++/libc++.gyp:libcxx_proxy', |
32 ], | 32 ], |
33 }], | 33 }], |
34 ['tsan==1', { | 34 ['tsan==1', { |
35 'sources': [ | 35 'sources': [ |
36 'tsan_suppressions.cc', | 36 'tsan_suppressions.cc', |
37 ], | 37 ], |
38 }], | 38 }], |
| 39 ['lsan==1', { |
| 40 'sources': [ |
| 41 'lsan_suppressions.cc', |
| 42 ], |
| 43 }], |
39 ], | 44 ], |
40 'cflags/': [ | 45 'cflags/': [ |
41 ['exclude', '-fsanitize='], | 46 ['exclude', '-fsanitize='], |
42 ['exclude', '-fsanitize-'], | 47 ['exclude', '-fsanitize-'], |
43 ], | 48 ], |
44 'direct_dependent_settings': { | 49 'direct_dependent_settings': { |
45 'ldflags': [ | 50 'ldflags': [ |
46 '-Wl,-u_sanitizer_options_link_helper', | 51 '-Wl,-u_sanitizer_options_link_helper', |
47 ], | 52 ], |
48 'target_conditions': [ | 53 'target_conditions': [ |
(...skipping 24 matching lines...) Expand all Loading... |
73 'files': [ | 78 'files': [ |
74 '<(llvm_symbolizer_path)', | 79 '<(llvm_symbolizer_path)', |
75 ], | 80 ], |
76 }], | 81 }], |
77 }], | 82 }], |
78 ], | 83 ], |
79 }, | 84 }, |
80 ], | 85 ], |
81 } | 86 } |
82 | 87 |
OLD | NEW |