OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 # Put all transitive dependencies for Windows HMAC here. |
| 8 # This is required so that we can build them for nacl win64. |
| 9 'variables': { |
| 10 'hmac_win64_related_sources': [ |
| 11 'hmac.cc', |
| 12 'hmac.h', |
| 13 'hmac_win.cc', |
| 14 'secure_util.cc', |
| 15 'secure_util.h', |
| 16 'symmetric_key.h', |
| 17 'symmetric_key_win.cc', |
| 18 'third_party/nss/chromium-blapi.h', |
| 19 'third_party/nss/chromium-blapit.h', |
| 20 'third_party/nss/chromium-prtypes.h', |
| 21 'third_party/nss/chromium-sha256.h', |
| 22 'third_party/nss/sha512.cc', |
| 23 'wincrypt_shim.h', |
| 24 ], |
| 25 }, |
| 26 'crypto_sources': [ |
| 27 # NOTE: all transitive dependencies of HMAC on windows need |
| 28 # to be placed in the source list above. |
| 29 '<@(hmac_win64_related_sources)', |
| 30 'aead_openssl.cc', |
| 31 'aead_openssl.h', |
| 32 'aes_128_gcm_helpers_nss.cc', |
| 33 'aes_128_gcm_helpers_nss.h', |
| 34 'apple_keychain.h', |
| 35 'apple_keychain_ios.mm', |
| 36 'apple_keychain_mac.mm', |
| 37 'capi_util.cc', |
| 38 'capi_util.h', |
| 39 'crypto_export.h', |
| 40 'cssm_init.cc', |
| 41 'cssm_init.h', |
| 42 'curve25519.cc', |
| 43 'curve25519.h', |
| 44 'curve25519-donna.c', |
| 45 'ghash.cc', |
| 46 'ghash.h', |
| 47 'ec_private_key.h', |
| 48 'ec_private_key_nss.cc', |
| 49 'ec_private_key_openssl.cc', |
| 50 'ec_signature_creator.cc', |
| 51 'ec_signature_creator.h', |
| 52 'ec_signature_creator_impl.h', |
| 53 'ec_signature_creator_nss.cc', |
| 54 'ec_signature_creator_openssl.cc', |
| 55 'encryptor.cc', |
| 56 'encryptor.h', |
| 57 'encryptor_nss.cc', |
| 58 'encryptor_openssl.cc', |
| 59 'hkdf.cc', |
| 60 'hkdf.h', |
| 61 'hmac_nss.cc', |
| 62 'hmac_openssl.cc', |
| 63 'mac_security_services_lock.cc', |
| 64 'mac_security_services_lock.h', |
| 65 'mock_apple_keychain.cc', |
| 66 'mock_apple_keychain.h', |
| 67 'mock_apple_keychain_ios.cc', |
| 68 'mock_apple_keychain_mac.cc', |
| 69 'p224_spake.cc', |
| 70 'p224_spake.h', |
| 71 'nss_crypto_module_delegate.h', |
| 72 'nss_key_util.cc', |
| 73 'nss_key_util.h', |
| 74 'nss_util.cc', |
| 75 'nss_util.h', |
| 76 'nss_util_internal.h', |
| 77 'openssl_bio_string.cc', |
| 78 'openssl_bio_string.h', |
| 79 'openssl_util.cc', |
| 80 'openssl_util.h', |
| 81 'p224.cc', |
| 82 'p224.h', |
| 83 'random.h', |
| 84 'random.cc', |
| 85 'rsa_private_key.cc', |
| 86 'rsa_private_key.h', |
| 87 'rsa_private_key_nss.cc', |
| 88 'rsa_private_key_openssl.cc', |
| 89 'scoped_capi_types.h', |
| 90 'scoped_nss_types.h', |
| 91 'secure_hash.h', |
| 92 'secure_hash_default.cc', |
| 93 'secure_hash_openssl.cc', |
| 94 'sha2.cc', |
| 95 'sha2.h', |
| 96 'signature_creator.h', |
| 97 'signature_creator_nss.cc', |
| 98 'signature_creator_openssl.cc', |
| 99 'signature_verifier.h', |
| 100 'signature_verifier_nss.cc', |
| 101 'signature_verifier_openssl.cc', |
| 102 'symmetric_key_nss.cc', |
| 103 'symmetric_key_openssl.cc', |
| 104 'third_party/nss/chromium-nss.h', |
| 105 'third_party/nss/pk11akey.cc', |
| 106 'third_party/nss/rsawrapr.c', |
| 107 'third_party/nss/secsign.cc', |
| 108 ], |
| 109 'nacl_win64_sources': [ |
| 110 '<@(hmac_win64_related_sources)', |
| 111 'random.cc', |
| 112 'random.h', |
| 113 ], |
| 114 } |
| 115 } |
OLD | NEW |