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

Side by Side Diff: build/linux/system.gyp

Issue 9654001: Fix pkgconfig wrapper for 64 bits (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 | « build/linux/pkg-config-wrapper ('k') | net/third_party/nss/ssl.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'conditions': [ 6 'conditions': [
7 ['sysroot!=""', { 7 ['sysroot!=""', {
8 'variables': { 8 'variables': {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
10 }, 10 },
11 }, { 11 }, {
12 'variables': { 12 'variables': {
13 'pkg-config': 'pkg-config' 13 'pkg-config': 'pkg-config'
14 }, 14 },
15 }], 15 }],
16 [ 'os_posix==1 and OS!="mac"', { 16 [ 'os_posix==1 and OS!="mac"', {
17 'variables': { 17 'variables': {
18 # We use our own copy of libssl3, although we still need to link against 18 # We use our own copy of libssl3, although we still need to link against
19 # the rest of NSS. 19 # the rest of NSS.
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 ], 642 ],
643 'libraries': [ 643 'libraries': [
644 '<!@(<(pkg-config) --libs-only-l libudev)', 644 '<!@(<(pkg-config) --libs-only-l libudev)',
645 ], 645 ],
646 }, 646 },
647 }], 647 }],
648 ], 648 ],
649 }, 649 },
650 ], 650 ],
651 } 651 }
OLDNEW
« no previous file with comments | « build/linux/pkg-config-wrapper ('k') | net/third_party/nss/ssl.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698