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"', { | 7 [ 'os_posix == 1 and OS != "mac"', { |
8 'conditions': [ | 8 'conditions': [ |
9 ['sysroot!=""', { | 9 ['sysroot!=""', { |
10 'variables': { | 10 'variables': { |
11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)"'
, | 11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)"
"<(target_arch)"', |
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 'configurations': { | 154 'configurations': { |
155 'Debug_Base': { | 155 'Debug_Base': { |
156 'defines': [ | 156 'defines': [ |
157 'DEBUG', | 157 'DEBUG', |
158 ], | 158 ], |
159 }, | 159 }, |
160 }, | 160 }, |
161 }, | 161 }, |
162 ], | 162 ], |
163 } | 163 } |
OLD | NEW |