| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 # Default value for all libraries. | 6 # Default value for all libraries. |
| 7 'custom_configure_flags': '', | 7 'custom_configure_flags': '', |
| 8 'custom_c_compiler_flags': '', | 8 'custom_c_compiler_flags': '', |
| 9 'custom_cxx_compiler_flags': '', | 9 'custom_cxx_compiler_flags': '', |
| 10 'custom_linker_flags': '', | 10 'custom_linker_flags': '', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 'cc': '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/clang', | 35 'cc': '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/clang', |
| 36 'cxx': '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/clang++', | 36 'cxx': '<!(cd <(DEPTH) && pwd -P)/<(make_clang_dir)/bin/clang++', |
| 37 }], | 37 }], |
| 38 ], | 38 ], |
| 39 'targets': [ | 39 'targets': [ |
| 40 { | 40 { |
| 41 'target_name': 'instrumented_libraries', | 41 'target_name': 'instrumented_libraries', |
| 42 'type': 'none', | 42 'type': 'none', |
| 43 'variables': { | 43 'variables': { |
| 44 'prune_self_dependency': 1, | 44 'prune_self_dependency': 1, |
| 45 # Don't add this target to the dependencies of targets with type=none. |
| 46 'link_dependency': 1, |
| 45 }, | 47 }, |
| 46 'dependencies': [ | 48 'dependencies': [ |
| 47 '<(_sanitizer_type)-libcairo2', | 49 '<(_sanitizer_type)-libcairo2', |
| 48 '<(_sanitizer_type)-libexpat1', | 50 '<(_sanitizer_type)-libexpat1', |
| 49 '<(_sanitizer_type)-libffi6', | 51 '<(_sanitizer_type)-libffi6', |
| 50 '<(_sanitizer_type)-libgcrypt11', | 52 '<(_sanitizer_type)-libgcrypt11', |
| 51 '<(_sanitizer_type)-libgpg-error0', | 53 '<(_sanitizer_type)-libgpg-error0', |
| 52 '<(_sanitizer_type)-libnspr4', | 54 '<(_sanitizer_type)-libnspr4', |
| 53 '<(_sanitizer_type)-libp11-kit0', | 55 '<(_sanitizer_type)-libp11-kit0', |
| 54 '<(_sanitizer_type)-libpcre3', | 56 '<(_sanitizer_type)-libpcre3', |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 ], | 360 ], |
| 359 'includes': ['standard_instrumented_library_target.gypi'], | 361 'includes': ['standard_instrumented_library_target.gypi'], |
| 360 }, | 362 }, |
| 361 { | 363 { |
| 362 'library_name': 'libtasn1-3', | 364 'library_name': 'libtasn1-3', |
| 363 'dependencies=': [], | 365 'dependencies=': [], |
| 364 'includes': ['standard_instrumented_library_target.gypi'], | 366 'includes': ['standard_instrumented_library_target.gypi'], |
| 365 }, | 367 }, |
| 366 ], | 368 ], |
| 367 } | 369 } |
| OLD | NEW |