OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 # Put all transitive dependencies for Windows HMAC here. | 7 # Put all transitive dependencies for Windows HMAC here. |
8 # This is required so that we can build them for nacl win64. | 8 # This is required so that we can build them for nacl win64. |
9 'variables': { | 9 'variables': { |
10 'hmac_win64_related_sources': [ | 10 'hmac_win64_related_sources': [ |
11 'hmac.cc', | 11 'hmac.cc', |
12 'hmac.h', | 12 'hmac.h', |
13 'hmac_win.cc', | 13 'hmac_win.cc', |
14 'secure_util.cc', | 14 'secure_util.cc', |
15 'secure_util.h', | 15 'secure_util.h', |
16 'symmetric_key.h', | 16 'symmetric_key.h', |
17 'symmetric_key_win.cc', | 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', |
18 'third_party/nss/chromium-sha256.h', | 21 'third_party/nss/chromium-sha256.h', |
19 'third_party/nss/sha512.cc', | 22 'third_party/nss/sha512.cc', |
20 ], | 23 ], |
21 }, | 24 }, |
22 'hmac_win64_related_sources': [ '<@(hmac_win64_related_sources)' ], | 25 'hmac_win64_related_sources': [ '<@(hmac_win64_related_sources)' ], |
23 'crypto_sources': [ | 26 'crypto_sources': [ |
24 # NOTE: all transitive dependencies of HMAC on windows need | 27 # NOTE: all transitive dependencies of HMAC on windows need |
25 # to be placed in the source list above. | 28 # to be placed in the source list above. |
26 '<@(hmac_win64_related_sources)', | 29 '<@(hmac_win64_related_sources)', |
27 'apple_keychain.h', | 30 'apple_keychain.h', |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 'sha2.cc', | 88 'sha2.cc', |
86 'sha2.h', | 89 'sha2.h', |
87 'signature_creator.h', | 90 'signature_creator.h', |
88 'signature_creator_nss.cc', | 91 'signature_creator_nss.cc', |
89 'signature_creator_openssl.cc', | 92 'signature_creator_openssl.cc', |
90 'signature_verifier.h', | 93 'signature_verifier.h', |
91 'signature_verifier_nss.cc', | 94 'signature_verifier_nss.cc', |
92 'signature_verifier_openssl.cc', | 95 'signature_verifier_openssl.cc', |
93 'symmetric_key_nss.cc', | 96 'symmetric_key_nss.cc', |
94 'symmetric_key_openssl.cc', | 97 '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/chromium-nss.h', |
98 'third_party/nss/pk11akey.cc', | 99 'third_party/nss/pk11akey.cc', |
99 'third_party/nss/rsawrapr.c', | 100 'third_party/nss/rsawrapr.c', |
100 'third_party/nss/secsign.cc', | 101 'third_party/nss/secsign.cc', |
101 ] | 102 ] |
102 } | 103 } |
103 } | 104 } |
OLD | NEW |