Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: third_party/instrumented_libraries/instrumented_libraries.gyp

Issue 285713002: Do not build libpng when instrumenting libraries with ThreadSanitizer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698