OLD | NEW |
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': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target
_arch)"', | 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target
_arch)"', |
10 'libgcrypt-config': '<(chroot_cmd) ./libgcrypt-config-wrapper "<(sysroot
)"', | 10 # libgcrypt-config-wrapper invokes libgcrypt-config directly from the |
| 11 # sysroot, so there's no need to prefix it with <(chroot_cmd). |
| 12 'libgcrypt-config': './libgcrypt-config-wrapper "<(sysroot)"', |
11 }, { | 13 }, { |
12 'pkg-config': 'pkg-config', | 14 'pkg-config': 'pkg-config', |
13 'libgcrypt-config': 'libgcrypt-config', | 15 'libgcrypt-config': 'libgcrypt-config', |
14 }], | 16 }], |
15 ], | 17 ], |
16 | 18 |
17 'linux_link_libgps%': 0, | 19 'linux_link_libgps%': 0, |
18 'linux_link_libpci%': 0, | 20 'linux_link_libpci%': 0, |
19 'linux_link_libspeechd%': 0, | 21 'linux_link_libspeechd%': 0, |
20 'linux_link_libbrlapi%': 0, | 22 'linux_link_libbrlapi%': 0, |
(...skipping 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 ], | 1003 ], |
1002 'libraries': [ | 1004 'libraries': [ |
1003 '<!@(<(pkg-config) --libs-only-l libudev)', | 1005 '<!@(<(pkg-config) --libs-only-l libudev)', |
1004 ], | 1006 ], |
1005 }, | 1007 }, |
1006 }], | 1008 }], |
1007 ], | 1009 ], |
1008 }, | 1010 }, |
1009 ], | 1011 ], |
1010 } | 1012 } |
OLD | NEW |