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