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 # Put all transitive dependencies for Windows HMAC here. | 8 # Put all transitive dependencies for Windows HMAC here. |
9 # This is required so that we can build them for nacl win64. | 9 # This is required so that we can build them for nacl win64. |
10 'hmac_win64_related_sources': [ | 10 'hmac_win64_related_sources': [ |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 '<@(hmac_win64_related_sources)', | 179 '<@(hmac_win64_related_sources)', |
180 'apple_keychain.h', | 180 'apple_keychain.h', |
181 'apple_keychain_ios.mm', | 181 'apple_keychain_ios.mm', |
182 'apple_keychain_mac.mm', | 182 'apple_keychain_mac.mm', |
183 'capi_util.cc', | 183 'capi_util.cc', |
184 'capi_util.h', | 184 'capi_util.h', |
185 'crypto_export.h', | 185 'crypto_export.h', |
186 'crypto_module_blocking_password_delegate.h', | 186 'crypto_module_blocking_password_delegate.h', |
187 'cssm_init.cc', | 187 'cssm_init.cc', |
188 'cssm_init.h', | 188 'cssm_init.h', |
| 189 'curve25519.cc', |
| 190 'curve25519.h', |
189 'ghash.cc', | 191 'ghash.cc', |
190 'ghash.h', | 192 'ghash.h', |
191 'ec_private_key.h', | 193 'ec_private_key.h', |
192 'ec_private_key_nss.cc', | 194 'ec_private_key_nss.cc', |
193 'ec_private_key_openssl.cc', | 195 'ec_private_key_openssl.cc', |
194 'ec_signature_creator.cc', | 196 'ec_signature_creator.cc', |
195 'ec_signature_creator.h', | 197 'ec_signature_creator.h', |
196 'ec_signature_creator_impl.h', | 198 'ec_signature_creator_impl.h', |
197 'ec_signature_creator_nss.cc', | 199 'ec_signature_creator_nss.cc', |
198 'ec_signature_creator_openssl.cc', | 200 'ec_signature_creator_openssl.cc', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 'signature_creator.h', | 242 'signature_creator.h', |
241 'signature_creator_mac.cc', | 243 'signature_creator_mac.cc', |
242 'signature_creator_nss.cc', | 244 'signature_creator_nss.cc', |
243 'signature_creator_openssl.cc', | 245 'signature_creator_openssl.cc', |
244 'signature_creator_win.cc', | 246 'signature_creator_win.cc', |
245 'signature_verifier.h', | 247 'signature_verifier.h', |
246 'signature_verifier_nss.cc', | 248 'signature_verifier_nss.cc', |
247 'signature_verifier_openssl.cc', | 249 'signature_verifier_openssl.cc', |
248 'symmetric_key_nss.cc', | 250 'symmetric_key_nss.cc', |
249 'symmetric_key_openssl.cc', | 251 'symmetric_key_openssl.cc', |
| 252 'third_party/curve25519-donna/curve25519-donna.c', |
250 'third_party/nss/chromium-blapi.h', | 253 'third_party/nss/chromium-blapi.h', |
251 'third_party/nss/chromium-blapit.h', | 254 'third_party/nss/chromium-blapit.h', |
252 'third_party/nss/chromium-nss.h', | 255 'third_party/nss/chromium-nss.h', |
253 'third_party/nss/pk11akey.cc', | 256 'third_party/nss/pk11akey.cc', |
254 'third_party/nss/secsign.cc', | 257 'third_party/nss/secsign.cc', |
255 ], | 258 ], |
256 }, | 259 }, |
257 { | 260 { |
258 'target_name': 'crypto_unittests', | 261 'target_name': 'crypto_unittests', |
259 'type': 'executable', | 262 'type': 'executable', |
260 'sources': [ | 263 'sources': [ |
261 # Infrastructure files. | 264 # Infrastructure files. |
262 'run_all_unittests.cc', | 265 'run_all_unittests.cc', |
263 | 266 |
264 # Tests. | 267 # Tests. |
| 268 'curve25519_unittest.cc', |
265 'ec_private_key_unittest.cc', | 269 'ec_private_key_unittest.cc', |
266 'ec_signature_creator_unittest.cc', | 270 'ec_signature_creator_unittest.cc', |
267 'encryptor_unittest.cc', | 271 'encryptor_unittest.cc', |
268 'ghash_unittest.cc', | 272 'ghash_unittest.cc', |
269 'hkdf_unittest.cc', | 273 'hkdf_unittest.cc', |
270 'hmac_unittest.cc', | 274 'hmac_unittest.cc', |
271 'nss_util_unittest.cc', | 275 'nss_util_unittest.cc', |
272 'p224_unittest.cc', | 276 'p224_unittest.cc', |
273 'p224_spake_unittest.cc', | 277 'p224_spake_unittest.cc', |
274 'random_unittest.cc', | 278 'random_unittest.cc', |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 'configurations': { | 370 'configurations': { |
367 'Common_Base': { | 371 'Common_Base': { |
368 'msvs_target_platform': 'x64', | 372 'msvs_target_platform': 'x64', |
369 }, | 373 }, |
370 }, | 374 }, |
371 }, | 375 }, |
372 ], | 376 ], |
373 }], | 377 }], |
374 ], | 378 ], |
375 } | 379 } |
OLD | NEW |