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 'hmac_win64_related_sources': [ | |
Ryan Sleevi
2014/03/06 21:48:02
This needs to be in a nested variables section. GY
Sergey Ulanov
2014/03/11 01:07:50
Thanks for catching this! I also had to add the fo
| |
10 'hmac.cc', | |
11 'hmac.h', | |
12 'hmac_win.cc', | |
13 'secure_util.cc', | |
14 'secure_util.h', | |
15 'symmetric_key.h', | |
16 'symmetric_key_win.cc', | |
17 'third_party/nss/chromium-sha256.h', | |
18 'third_party/nss/sha512.cc', | |
19 ], | |
20 'crypto_sources': [ | |
21 # NOTE: all transitive dependencies of HMAC on windows need | |
22 # to be placed in the source list above. | |
23 '<@(hmac_win64_related_sources)', | |
24 'apple_keychain.h', | |
25 'apple_keychain_ios.mm', | |
26 'apple_keychain_mac.mm', | |
27 'capi_util.cc', | |
28 'capi_util.h', | |
29 'crypto_export.h', | |
30 'cssm_init.cc', | |
31 'cssm_init.h', | |
32 'curve25519.cc', | |
33 'curve25519.h', | |
34 'curve25519-donna.c', | |
35 'ghash.cc', | |
36 'ghash.h', | |
37 'ec_private_key.h', | |
38 'ec_private_key_nss.cc', | |
39 'ec_private_key_openssl.cc', | |
40 'ec_signature_creator.cc', | |
41 'ec_signature_creator.h', | |
42 'ec_signature_creator_impl.h', | |
43 'ec_signature_creator_nss.cc', | |
44 'ec_signature_creator_openssl.cc', | |
45 'encryptor.cc', | |
46 'encryptor.h', | |
47 'encryptor_nss.cc', | |
48 'encryptor_openssl.cc', | |
49 'hkdf.cc', | |
50 'hkdf.h', | |
51 'hmac_nss.cc', | |
52 'hmac_openssl.cc', | |
53 'mac_security_services_lock.cc', | |
54 'mac_security_services_lock.h', | |
55 'mock_apple_keychain.cc', | |
56 'mock_apple_keychain.h', | |
57 'mock_apple_keychain_ios.cc', | |
58 'mock_apple_keychain_mac.cc', | |
59 'p224_spake.cc', | |
60 'p224_spake.h', | |
61 'nss_crypto_module_delegate.h', | |
62 'nss_util.cc', | |
63 'nss_util.h', | |
64 'nss_util_internal.h', | |
65 'openpgp_symmetric_encryption.cc', | |
66 'openpgp_symmetric_encryption.h', | |
67 'openssl_util.cc', | |
68 'openssl_util.h', | |
69 'p224.cc', | |
70 'p224.h', | |
71 'random.h', | |
72 'random.cc', | |
73 'rsa_private_key.cc', | |
74 'rsa_private_key.h', | |
75 'rsa_private_key_nss.cc', | |
76 'rsa_private_key_openssl.cc', | |
77 'scoped_capi_types.h', | |
78 'scoped_nss_types.h', | |
79 'secure_hash.h', | |
80 'secure_hash_default.cc', | |
81 'secure_hash_openssl.cc', | |
82 'sha2.cc', | |
83 'sha2.h', | |
84 'signature_creator.h', | |
85 'signature_creator_nss.cc', | |
86 'signature_creator_openssl.cc', | |
87 'signature_verifier.h', | |
88 'signature_verifier_nss.cc', | |
89 'signature_verifier_openssl.cc', | |
90 'symmetric_key_nss.cc', | |
91 'symmetric_key_openssl.cc', | |
92 'third_party/nss/chromium-blapi.h', | |
93 'third_party/nss/chromium-blapit.h', | |
94 'third_party/nss/chromium-nss.h', | |
95 'third_party/nss/pk11akey.cc', | |
96 'third_party/nss/rsawrapr.c', | |
97 'third_party/nss/secsign.cc', | |
98 ] | |
99 } | |
100 } | |
OLD | NEW |