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

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

Issue 163583003: Introduce the chroot_cmd flag that contains the command line prefix for running in a chrooted envir… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 10 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/common.gypi ('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 (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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)"',
10 }, { 10 }, {
11 'pkg-config': 'pkg-config' 11 'pkg-config': 'pkg-config'
12 }], 12 }],
13 ], 13 ],
14 14
15 'linux_link_libgps%': 0, 15 'linux_link_libgps%': 0,
16 'linux_link_libpci%': 0, 16 'linux_link_libpci%': 0,
17 'linux_link_libspeechd%': 0, 17 'linux_link_libspeechd%': 0,
18 'linux_link_libbrlapi%': 0, 18 'linux_link_libbrlapi%': 0,
19 }, 19 },
(...skipping 974 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 ], 994 ],
995 'libraries': [ 995 'libraries': [
996 '<!@(pkg-config --libs-only-l xtst)', 996 '<!@(pkg-config --libs-only-l xtst)',
997 ], 997 ],
998 }, 998 },
999 }] 999 }]
1000 ] 1000 ]
1001 } 1001 }
1002 ], 1002 ],
1003 } 1003 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698