| 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 982 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 # Some targets may want to opt-out from ASan, TSan and MSan and link | 993 # Some targets may want to opt-out from ASan, TSan and MSan and link |
| 994 # without the corresponding runtime libraries. We drop the libc++ | 994 # without the corresponding runtime libraries. We drop the libc++ |
| 995 # dependency and omit the compiler flags to avoid bringing instrumented | 995 # dependency and omit the compiler flags to avoid bringing instrumented |
| 996 # code to those targets. | 996 # code to those targets. |
| 997 'conditions': [ | 997 'conditions': [ |
| 998 ['use_custom_libcxx==1', { | 998 ['use_custom_libcxx==1', { |
| 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', { |
| 1004 'sources': [ |
| 1005 'debug/tsan_suppressions.cc', |
| 1006 ], |
| 1007 }], |
| 1003 ], | 1008 ], |
| 1004 'cflags!': [ | 1009 'cflags!': [ |
| 1005 '-fsanitize=address', | 1010 '-fsanitize=address', |
| 1006 '-fsanitize=thread', | 1011 '-fsanitize=thread', |
| 1007 '-fsanitize=memory', | 1012 '-fsanitize=memory', |
| 1008 '-fsanitize-memory-track-origins', | 1013 '-fsanitize-memory-track-origins', |
| 1009 ], | 1014 ], |
| 1010 'direct_dependent_settings': { | 1015 'direct_dependent_settings': { |
| 1011 'ldflags': [ | 1016 'ldflags': [ |
| 1012 '-Wl,-u_sanitizer_options_link_helper', | 1017 '-Wl,-u_sanitizer_options_link_helper', |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1489 'base_unittests.isolate', | 1494 'base_unittests.isolate', |
| 1490 ], | 1495 ], |
| 1491 'sources': [ | 1496 'sources': [ |
| 1492 'base_unittests.isolate', | 1497 'base_unittests.isolate', |
| 1493 ], | 1498 ], |
| 1494 }, | 1499 }, |
| 1495 ], | 1500 ], |
| 1496 }], | 1501 }], |
| 1497 ], | 1502 ], |
| 1498 } | 1503 } |
| OLD | NEW |