| 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 24 matching lines...) Expand all Loading... |
| 35 'capi_util.h', | 35 'capi_util.h', |
| 36 'crypto_export.h', | 36 'crypto_export.h', |
| 37 'cssm_init.cc', | 37 'cssm_init.cc', |
| 38 'cssm_init.h', | 38 'cssm_init.h', |
| 39 'curve25519.cc', | 39 'curve25519.cc', |
| 40 'curve25519.h', | 40 'curve25519.h', |
| 41 'ec_private_key.cc', | 41 'ec_private_key.cc', |
| 42 'ec_private_key.h', | 42 'ec_private_key.h', |
| 43 'ec_signature_creator.cc', | 43 'ec_signature_creator.cc', |
| 44 'ec_signature_creator.h', | 44 'ec_signature_creator.h', |
| 45 'ec_signature_creator_impl.cc', |
| 45 'ec_signature_creator_impl.h', | 46 'ec_signature_creator_impl.h', |
| 46 'ec_signature_creator_openssl.cc', | |
| 47 'encryptor.cc', | 47 'encryptor.cc', |
| 48 'encryptor.h', | 48 'encryptor.h', |
| 49 'hkdf.cc', | 49 'hkdf.cc', |
| 50 'hkdf.h', | 50 'hkdf.h', |
| 51 'hmac_openssl.cc', | 51 'hmac_openssl.cc', |
| 52 'mac_security_services_lock.cc', | 52 'mac_security_services_lock.cc', |
| 53 'mac_security_services_lock.h', | 53 'mac_security_services_lock.h', |
| 54 'mock_apple_keychain.cc', | 54 'mock_apple_keychain.cc', |
| 55 'mock_apple_keychain.h', | 55 'mock_apple_keychain.h', |
| 56 'mock_apple_keychain_ios.cc', | 56 'mock_apple_keychain_ios.cc', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 85 'signature_verifier.h', | 85 'signature_verifier.h', |
| 86 'symmetric_key_openssl.cc', | 86 'symmetric_key_openssl.cc', |
| 87 ], | 87 ], |
| 88 'nacl_win64_sources': [ | 88 'nacl_win64_sources': [ |
| 89 '<@(hmac_win64_related_sources)', | 89 '<@(hmac_win64_related_sources)', |
| 90 'random.cc', | 90 'random.cc', |
| 91 'random.h', | 91 'random.h', |
| 92 ], | 92 ], |
| 93 } | 93 } |
| 94 } | 94 } |
| OLD | NEW |