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

Side by Side Diff: third_party/harfbuzz-ng/harfbuzz.gyp

Issue 244593002: pkg-config-wrapper: use system_libdir for libpath (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
OLDNEW
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 'includes': [ 6 'includes': [
7 '../../build/win_precompile.gypi', 7 '../../build/win_precompile.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'variables': { 10 'variables': {
11 'conditions': [ 11 'conditions': [
12 ['sysroot!=""', { 12 ['sysroot!=""', {
13 'pkg-config': '<(chroot_cmd) ../../build/linux/pkg-config-wrapper "<(s ysroot)" "<(target_arch)"', 13 'pkg-config': '<(chroot_cmd) ../../build/linux/pkg-config-wrapper "<(s ysroot)" "<(target_arch)" "<(system_libdir)"',
14 }, { 14 }, {
15 'pkg-config': 'pkg-config' 15 'pkg-config': 'pkg-config'
16 }], 16 }],
17 ], 17 ],
18 }, 18 },
19 19
20 'pkg-config': '<(pkg-config)', 20 'pkg-config': '<(pkg-config)',
21 21
22 'conditions': [ 22 'conditions': [
23 ['OS=="linux" and (buildtype!="Official" or chromeos==1)', { 23 ['OS=="linux" and (buildtype!="Official" or chromeos==1)', {
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 ], 191 ],
192 'libraries': [ 192 'libraries': [
193 '<!@(<(pkg-config) --libs-only-l harfbuzz)', 193 '<!@(<(pkg-config) --libs-only-l harfbuzz)',
194 ], 194 ],
195 }, 195 },
196 }, 196 },
197 ], 197 ],
198 }], 198 }],
199 ], 199 ],
200 } 200 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698