| 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': [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 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', | 30 'aead_openssl.cc', |
| 31 'aead_openssl.h', | 31 'aead_openssl.h', |
| 32 'apple_keychain.h', | 32 'apple_keychain.h', |
| 33 'apple_keychain_ios.mm', | 33 'apple_keychain_ios.mm', |
| 34 'apple_keychain_mac.mm', | 34 'apple_keychain_mac.mm', |
| 35 'auto_cbb.h', |
| 35 'capi_util.cc', | 36 'capi_util.cc', |
| 36 'capi_util.h', | 37 'capi_util.h', |
| 37 'crypto_export.h', | 38 'crypto_export.h', |
| 38 'cssm_init.cc', | 39 'cssm_init.cc', |
| 39 'cssm_init.h', | 40 'cssm_init.h', |
| 40 'curve25519-donna.c', | 41 'curve25519-donna.c', |
| 41 'curve25519.h', | 42 'curve25519.h', |
| 42 'curve25519_nss.cc', | 43 'curve25519_nss.cc', |
| 43 'curve25519_openssl.cc', | 44 'curve25519_openssl.cc', |
| 44 'ec_private_key.h', | 45 'ec_private_key.h', |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 'third_party/nss/rsawrapr.c', | 104 'third_party/nss/rsawrapr.c', |
| 104 'third_party/nss/secsign.cc', | 105 'third_party/nss/secsign.cc', |
| 105 ], | 106 ], |
| 106 'nacl_win64_sources': [ | 107 'nacl_win64_sources': [ |
| 107 '<@(hmac_win64_related_sources)', | 108 '<@(hmac_win64_related_sources)', |
| 108 'random.cc', | 109 'random.cc', |
| 109 'random.h', | 110 'random.h', |
| 110 ], | 111 ], |
| 111 } | 112 } |
| 112 } | 113 } |
| OLD | NEW |