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 'extra_configure_flags': '', | 7 'extra_configure_flags': '', |
8 'extra_cflags': '', | 8 'extra_cflags': '', |
9 'extra_cxxflags': '', | 9 'extra_cxxflags': '', |
10 'extra_ldflags': '', | 10 'extra_ldflags': '', |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 ['asan==1', { | 95 ['asan==1', { |
96 'dependencies': [ | 96 'dependencies': [ |
97 '<(_sanitizer_type)-libpixman-1-0', | 97 '<(_sanitizer_type)-libpixman-1-0', |
98 ], | 98 ], |
99 }], | 99 }], |
100 ['msan==1', { | 100 ['msan==1', { |
101 'dependencies': [ | 101 'dependencies': [ |
102 '<(_sanitizer_type)-libcups2', | 102 '<(_sanitizer_type)-libcups2', |
103 ], | 103 ], |
104 }], | 104 }], |
| 105 ['tsan==1', { |
| 106 'dependencies!': [ |
| 107 '<(_sanitizer_type)-libpng12-0', |
| 108 ], |
| 109 }], |
105 ], | 110 ], |
106 'actions': [ | 111 'actions': [ |
107 { | 112 { |
108 'action_name': 'fix_rpaths', | 113 'action_name': 'fix_rpaths', |
109 'inputs': [ | 114 'inputs': [ |
110 'fix_rpaths.sh', | 115 'fix_rpaths.sh', |
111 ], | 116 ], |
112 'outputs': [ | 117 'outputs': [ |
113 '<(PRODUCT_DIR)/instrumented_libraries/<(_sanitizer_type)/rpaths.fix
ed.txt', | 118 '<(PRODUCT_DIR)/instrumented_libraries/<(_sanitizer_type)/rpaths.fix
ed.txt', |
114 ], | 119 ], |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 # a just-built binary and crashes. Vala requires introspection. | 477 # a just-built binary and crashes. Vala requires introspection. |
473 # TODO(earthdok): find a better fix. | 478 # TODO(earthdok): find a better fix. |
474 '--disable-introspection', | 479 '--disable-introspection', |
475 '--disable-vala', | 480 '--disable-vala', |
476 ], | 481 ], |
477 'dependencies=': [], | 482 'dependencies=': [], |
478 'includes': ['standard_instrumented_library_target.gypi'], | 483 'includes': ['standard_instrumented_library_target.gypi'], |
479 }, | 484 }, |
480 ], | 485 ], |
481 } | 486 } |
OLD | NEW |