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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'crypto.gypi', | 10 'crypto.gypi', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 'capi_util.h', | 93 'capi_util.h', |
94 'capi_util.cc', | 94 'capi_util.cc', |
95 ], | 95 ], |
96 }], | 96 }], |
97 [ 'OS == "win"', { | 97 [ 'OS == "win"', { |
98 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 98 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
99 'msvs_disabled_warnings': [4267, ], | 99 'msvs_disabled_warnings': [4267, ], |
100 }], | 100 }], |
101 [ 'use_openssl==1', { | 101 [ 'use_openssl==1', { |
102 'dependencies': [ | 102 'dependencies': [ |
103 '../third_party/boringssl/boringssl.gyp:boringssl', | 103 '../third_party/openssl/openssl.gyp:openssl', |
104 ], | 104 ], |
105 # TODO(joth): Use a glob to match exclude patterns once the | 105 # TODO(joth): Use a glob to match exclude patterns once the |
106 # OpenSSL file set is complete. | 106 # OpenSSL file set is complete. |
107 'sources!': [ | 107 'sources!': [ |
108 'ec_private_key_nss.cc', | 108 'ec_private_key_nss.cc', |
109 'ec_signature_creator_nss.cc', | 109 'ec_signature_creator_nss.cc', |
110 'encryptor_nss.cc', | 110 'encryptor_nss.cc', |
111 'hmac_nss.cc', | 111 'hmac_nss.cc', |
112 'nss_util.cc', | 112 'nss_util.cc', |
113 'nss_util.h', | 113 'nss_util.h', |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 'dependencies': [ | 202 'dependencies': [ |
203 '../third_party/nss/nss.gyp:nspr', | 203 '../third_party/nss/nss.gyp:nspr', |
204 ], | 204 ], |
205 }], | 205 }], |
206 [ 'OS == "win"', { | 206 [ 'OS == "win"', { |
207 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 207 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
208 'msvs_disabled_warnings': [4267, ], | 208 'msvs_disabled_warnings': [4267, ], |
209 }], | 209 }], |
210 [ 'use_openssl==1', { | 210 [ 'use_openssl==1', { |
211 'dependencies': [ | 211 'dependencies': [ |
212 '../third_party/boringssl/boringssl.gyp:boringssl', | 212 '../third_party/openssl/openssl.gyp:openssl', |
213 ], | 213 ], |
214 'sources!': [ | 214 'sources!': [ |
215 'nss_util_unittest.cc', | 215 'nss_util_unittest.cc', |
216 'rsa_private_key_nss_unittest.cc', | 216 'rsa_private_key_nss_unittest.cc', |
217 ], | 217 ], |
218 }, { | 218 }, { |
219 'sources!': [ | 219 'sources!': [ |
220 'openssl_bio_string_unittest.cc', | 220 'openssl_bio_string_unittest.cc', |
221 ], | 221 ], |
222 }], | 222 }], |
(...skipping 26 matching lines...) Expand all Loading... |
249 'configurations': { | 249 'configurations': { |
250 'Common_Base': { | 250 'Common_Base': { |
251 'msvs_target_platform': 'x64', | 251 'msvs_target_platform': 'x64', |
252 }, | 252 }, |
253 }, | 253 }, |
254 }, | 254 }, |
255 ], | 255 ], |
256 }], | 256 }], |
257 ], | 257 ], |
258 } | 258 } |
OLD | NEW |