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 'conditions': [ | 6 'conditions': [ |
7 [ 'os_posix == 1 and OS != "mac" and OS != "ios"', { | 7 [ 'os_posix == 1 and OS != "mac" and OS != "ios"', { |
8 'conditions': [ | 8 'conditions': [ |
9 ['sysroot!=""', { | 9 ['sysroot!=""', { |
10 'variables': { | 10 'variables': { |
11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)"
"<(target_arch)"', | 11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)"
"<(target_arch)" "<(system_libdir)"', |
12 }, | 12 }, |
13 }, { | 13 }, { |
14 'variables': { | 14 'variables': { |
15 'pkg-config': 'pkg-config' | 15 'pkg-config': 'pkg-config' |
16 }, | 16 }, |
17 }], | 17 }], |
18 ], | 18 ], |
19 }], | 19 }], |
20 ], | 20 ], |
21 | 21 |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 'configurations': { | 190 'configurations': { |
191 'Debug_Base': { | 191 'Debug_Base': { |
192 'defines': [ | 192 'defines': [ |
193 'DEBUG', | 193 'DEBUG', |
194 ], | 194 ], |
195 }, | 195 }, |
196 }, | 196 }, |
197 }, | 197 }, |
198 ], | 198 ], |
199 } | 199 } |
OLD | NEW |