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': [ | |
7 [ 'os_posix == 1 and OS != "mac" and OS != "ios"', { | |
8 'conditions': [ | |
9 ['sysroot!=""', { | |
10 'variables': { | |
11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)"
"<(target_arch)" "<(system_libdir)"', | |
12 }, | |
13 }, { | |
14 'variables': { | |
15 'pkg-config': 'pkg-config' | |
16 }, | |
17 }], | |
18 ], | |
19 }], | |
20 ], | |
21 | |
22 'targets': [ | 6 'targets': [ |
23 { | 7 { |
24 'target_name': 'libssl', | 8 'target_name': 'libssl', |
25 'type': '<(component)', | 9 'type': '<(component)', |
26 'product_name': 'crssl', # Don't conflict with OpenSSL's libssl | 10 'product_name': 'crssl', # Don't conflict with OpenSSL's libssl |
27 'sources': [ | 11 'sources': [ |
28 'ssl/SSLerrs.h', | 12 'ssl/SSLerrs.h', |
29 'ssl/authcert.c', | 13 'ssl/authcert.c', |
30 'ssl/bodge/secitem_array.c', | 14 'ssl/bodge/secitem_array.c', |
31 'ssl/cmpcert.c', | 15 'ssl/cmpcert.c', |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 'configurations': { | 176 'configurations': { |
193 'Debug_Base': { | 177 'Debug_Base': { |
194 'defines': [ | 178 'defines': [ |
195 'DEBUG', | 179 'DEBUG', |
196 ], | 180 ], |
197 }, | 181 }, |
198 }, | 182 }, |
199 }, | 183 }, |
200 ], | 184 ], |
201 } | 185 } |
OLD | NEW |