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

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

Issue 695523003: Instrumented libraries: add harfbuzz. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: deps Created 6 years, 1 month 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
« no previous file with comments | « third_party/instrumented_libraries/install-build-deps.sh ('k') | 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 'variables': { 6 'variables': {
7 'verbose_libraries_build%': 0, 7 'verbose_libraries_build%': 0,
8 'instrumented_libraries_jobs%': 1, 8 'instrumented_libraries_jobs%': 1,
9 }, 9 },
10 10
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 '<(_sanitizer_type)-libpixman-1-0', 136 '<(_sanitizer_type)-libpixman-1-0',
137 ], 137 ],
138 'conditions': [ 138 'conditions': [
139 ['"<(_ubuntu_release)"=="precise"', { 139 ['"<(_ubuntu_release)"=="precise"', {
140 'dependencies': [ 140 'dependencies': [
141 '<(_sanitizer_type)-libtasn1-3', 141 '<(_sanitizer_type)-libtasn1-3',
142 ], 142 ],
143 }, { 143 }, {
144 'dependencies': [ 144 'dependencies': [
145 '<(_sanitizer_type)-libtasn1-6', 145 '<(_sanitizer_type)-libtasn1-6',
146 '<(_sanitizer_type)-harfbuzz',
146 ], 147 ],
147 }], 148 }],
148 ['msan==1', { 149 ['msan==1', {
149 'dependencies': [ 150 'dependencies': [
150 '<(_sanitizer_type)-libcups2', 151 '<(_sanitizer_type)-libcups2',
151 ], 152 ],
152 }], 153 }],
153 ['tsan==1', { 154 ['tsan==1', {
154 'dependencies!': [ 155 'dependencies!': [
155 '<(_sanitizer_type)-libpng12-0', 156 '<(_sanitizer_type)-libpng12-0',
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 { 661 {
661 'package_name': 'dee', 662 'package_name': 'dee',
662 'extra_configure_flags': [ 663 'extra_configure_flags': [
663 # See above. 664 # See above.
664 '--disable-introspection', 665 '--disable-introspection',
665 ], 666 ],
666 'dependencies=': [], 667 'dependencies=': [],
667 'run_before_build': 'scripts/autogen.sh', 668 'run_before_build': 'scripts/autogen.sh',
668 'includes': ['standard_instrumented_package_target.gypi'], 669 'includes': ['standard_instrumented_package_target.gypi'],
669 }, 670 },
671 {
672 'package_name': 'harfbuzz',
673 'package_cflags': ['-Wno-c++11-narrowing'],
674 'extra_configure_flags': [
675 # From debian/rules.
676 '--with-graphite2=yes',
677 '--with-gobject',
678 # See above.
679 '--disable-introspection',
680 ],
681 'dependencies=': [],
682 'includes': ['standard_instrumented_package_target.gypi'],
683 },
670 ], 684 ],
671 } 685 }
OLDNEW
« no previous file with comments | « third_party/instrumented_libraries/install-build-deps.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698