| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # Put all transitive dependencies for Windows HMAC here. | 8 # Put all transitive dependencies for Windows HMAC here. |
| 9 # This is required so that we can build them for nacl win64. | 9 # This is required so that we can build them for nacl win64. |
| 10 'hmac_win64_related_sources': [ | 10 'hmac_win64_related_sources': [ |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 'sources': [ | 162 'sources': [ |
| 163 # NOTE: all transitive dependencies of HMAC on windows need | 163 # NOTE: all transitive dependencies of HMAC on windows need |
| 164 # to be placed in the source list above. | 164 # to be placed in the source list above. |
| 165 '<@(hmac_win64_related_sources)', | 165 '<@(hmac_win64_related_sources)', |
| 166 'apple_keychain.h', | 166 'apple_keychain.h', |
| 167 'apple_keychain_ios.mm', | 167 'apple_keychain_ios.mm', |
| 168 'apple_keychain_mac.mm', | 168 'apple_keychain_mac.mm', |
| 169 'capi_util.cc', | 169 'capi_util.cc', |
| 170 'capi_util.h', | 170 'capi_util.h', |
| 171 'crypto_export.h', | 171 'crypto_export.h', |
| 172 'crypto_module_blocking_password_delegate.h', | |
| 173 'cssm_init.cc', | 172 'cssm_init.cc', |
| 174 'cssm_init.h', | 173 'cssm_init.h', |
| 175 'curve25519.cc', | 174 'curve25519.cc', |
| 176 'curve25519.h', | 175 'curve25519.h', |
| 177 'curve25519-donna.c', | 176 'curve25519-donna.c', |
| 178 'ghash.cc', | 177 'ghash.cc', |
| 179 'ghash.h', | 178 'ghash.h', |
| 180 'ec_private_key.h', | 179 'ec_private_key.h', |
| 181 'ec_private_key_nss.cc', | 180 'ec_private_key_nss.cc', |
| 182 'ec_private_key_openssl.cc', | 181 'ec_private_key_openssl.cc', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 194 'hmac_nss.cc', | 193 'hmac_nss.cc', |
| 195 'hmac_openssl.cc', | 194 'hmac_openssl.cc', |
| 196 'mac_security_services_lock.cc', | 195 'mac_security_services_lock.cc', |
| 197 'mac_security_services_lock.h', | 196 'mac_security_services_lock.h', |
| 198 'mock_apple_keychain.cc', | 197 'mock_apple_keychain.cc', |
| 199 'mock_apple_keychain.h', | 198 'mock_apple_keychain.h', |
| 200 'mock_apple_keychain_ios.cc', | 199 'mock_apple_keychain_ios.cc', |
| 201 'mock_apple_keychain_mac.cc', | 200 'mock_apple_keychain_mac.cc', |
| 202 'p224_spake.cc', | 201 'p224_spake.cc', |
| 203 'p224_spake.h', | 202 'p224_spake.h', |
| 203 'nss_crypto_module_delegate.h', |
| 204 'nss_util.cc', | 204 'nss_util.cc', |
| 205 'nss_util.h', | 205 'nss_util.h', |
| 206 'nss_util_internal.h', | 206 'nss_util_internal.h', |
| 207 'openpgp_symmetric_encryption.cc', | 207 'openpgp_symmetric_encryption.cc', |
| 208 'openpgp_symmetric_encryption.h', | 208 'openpgp_symmetric_encryption.h', |
| 209 'openssl_util.cc', | 209 'openssl_util.cc', |
| 210 'openssl_util.h', | 210 'openssl_util.h', |
| 211 'p224.cc', | 211 'p224.cc', |
| 212 'p224.h', | 212 'p224.h', |
| 213 'random.h', | 213 'random.h', |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 'configurations': { | 340 'configurations': { |
| 341 'Common_Base': { | 341 'Common_Base': { |
| 342 'msvs_target_platform': 'x64', | 342 'msvs_target_platform': 'x64', |
| 343 }, | 343 }, |
| 344 }, | 344 }, |
| 345 }, | 345 }, |
| 346 ], | 346 ], |
| 347 }], | 347 }], |
| 348 ], | 348 ], |
| 349 } | 349 } |
| OLD | NEW |