| 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', | 18 'third_party/nss/chromium-blapi.h', |
| 19 'third_party/nss/chromium-blapit.h', | 19 'third_party/nss/chromium-blapit.h', |
| 20 'third_party/nss/chromium-prtypes.h', | 20 'third_party/nss/chromium-prtypes.h', |
| 21 'third_party/nss/chromium-sha256.h', | 21 'third_party/nss/chromium-sha256.h', |
| 22 'third_party/nss/sha512.cc', | 22 'third_party/nss/sha512.cc', |
| 23 'wincrypt_shim.h', | 23 'wincrypt_shim.h', |
| 24 ], | 24 ], |
| 25 }, | 25 }, |
| 26 'crypto_sources': [ | 26 'crypto_sources': [ |
| 27 # NOTE: all transitive dependencies of HMAC on windows need | 27 # NOTE: all transitive dependencies of HMAC on windows need |
| 28 # to be placed in the source list above. | 28 # to be placed in the source list above. |
| 29 '<@(hmac_win64_related_sources)', | 29 '<@(hmac_win64_related_sources)', |
| 30 'aead_openssl.cc', | |
| 31 'aead_openssl.h', | |
| 32 'apple_keychain.h', | 30 'apple_keychain.h', |
| 33 'apple_keychain_ios.mm', | 31 'apple_keychain_ios.mm', |
| 34 'apple_keychain_mac.mm', | 32 'apple_keychain_mac.mm', |
| 35 'capi_util.cc', | 33 'capi_util.cc', |
| 36 'capi_util.h', | 34 'capi_util.h', |
| 37 'crypto_export.h', | 35 'crypto_export.h', |
| 38 'cssm_init.cc', | 36 'cssm_init.cc', |
| 39 'cssm_init.h', | 37 'cssm_init.h', |
| 40 'curve25519.cc', | 38 'curve25519.cc', |
| 41 'curve25519.h', | 39 'curve25519.h', |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 'third_party/nss/rsawrapr.c', | 100 'third_party/nss/rsawrapr.c', |
| 103 'third_party/nss/secsign.cc', | 101 'third_party/nss/secsign.cc', |
| 104 ], | 102 ], |
| 105 'nacl_win64_sources': [ | 103 'nacl_win64_sources': [ |
| 106 '<@(hmac_win64_related_sources)', | 104 '<@(hmac_win64_related_sources)', |
| 107 'random.cc', | 105 'random.cc', |
| 108 'random.h', | 106 'random.h', |
| 109 ], | 107 ], |
| 110 } | 108 } |
| 111 } | 109 } |
| OLD | NEW |