OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 == "linux"', { | 7 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { |
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)"'
, |
12 }, | 12 }, |
13 }, { | 13 }, { |
14 'variables': { | 14 'variables': { |
15 'pkg-config': 'pkg-config' | 15 'pkg-config': 'pkg-config' |
16 }, | 16 }, |
17 }], | 17 }], |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 'defines': [ | 70 'defines': [ |
71 'NSS_ENABLE_ECC', | 71 'NSS_ENABLE_ECC', |
72 'NSS_ENABLE_ZLIB', | 72 'NSS_ENABLE_ZLIB', |
73 'USE_UTIL_DIRECTLY', | 73 'USE_UTIL_DIRECTLY', |
74 ], | 74 ], |
75 'defines!': [ | 75 'defines!': [ |
76 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet. | 76 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet. |
77 'NO_NSPR_10_SUPPORT', | 77 'NO_NSPR_10_SUPPORT', |
78 ], | 78 ], |
79 'conditions': [ | 79 'conditions': [ |
80 [ 'OS == "linux"', { | 80 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { |
81 'sources!': [ | 81 'sources!': [ |
82 'ssl/os2_err.c', | 82 'ssl/os2_err.c', |
83 'ssl/os2_err.h', | 83 'ssl/os2_err.h', |
84 'ssl/win32err.c', | 84 'ssl/win32err.c', |
85 'ssl/win32err.h', | 85 'ssl/win32err.h', |
86 ], | 86 ], |
87 'defines': [ | 87 'defines': [ |
88 # These macros are needed only for compiling the files in | 88 # These macros are needed only for compiling the files in |
89 # ssl/bodge. | 89 # ssl/bodge. |
90 'SHLIB_PREFIX="lib"', | 90 'SHLIB_PREFIX="lib"', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 }, | 135 }, |
136 }, | 136 }, |
137 ], | 137 ], |
138 } | 138 } |
139 | 139 |
140 # Local Variables: | 140 # Local Variables: |
141 # tab-width:2 | 141 # tab-width:2 |
142 # indent-tabs-mode:nil | 142 # indent-tabs-mode:nil |
143 # End: | 143 # End: |
144 # vim: set expandtab tabstop=2 shiftwidth=2: | 144 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |