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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 'sources': [ | 165 'sources': [ |
166 # NOTE: all transitive dependencies of HMAC on windows need | 166 # NOTE: all transitive dependencies of HMAC on windows need |
167 # to be placed in the source list above. | 167 # to be placed in the source list above. |
168 '<@(hmac_win64_related_sources)', | 168 '<@(hmac_win64_related_sources)', |
169 'apple_keychain.h', | 169 'apple_keychain.h', |
170 'apple_keychain_ios.mm', | 170 'apple_keychain_ios.mm', |
171 'apple_keychain_mac.mm', | 171 'apple_keychain_mac.mm', |
172 'capi_util.cc', | 172 'capi_util.cc', |
173 'capi_util.h', | 173 'capi_util.h', |
174 'crypto_export.h', | 174 'crypto_export.h', |
175 'crypto_module_blocking_password_delegate.h', | |
176 'cssm_init.cc', | 175 'cssm_init.cc', |
177 'cssm_init.h', | 176 'cssm_init.h', |
178 'curve25519.cc', | 177 'curve25519.cc', |
179 'curve25519.h', | 178 'curve25519.h', |
180 'curve25519-donna.c', | 179 'curve25519-donna.c', |
181 'ghash.cc', | 180 'ghash.cc', |
182 'ghash.h', | 181 'ghash.h', |
183 'ec_private_key.h', | 182 'ec_private_key.h', |
184 'ec_private_key_nss.cc', | 183 'ec_private_key_nss.cc', |
185 'ec_private_key_openssl.cc', | 184 'ec_private_key_openssl.cc', |
(...skipping 11 matching lines...) Expand all Loading... |
197 'hmac_nss.cc', | 196 'hmac_nss.cc', |
198 'hmac_openssl.cc', | 197 'hmac_openssl.cc', |
199 'mac_security_services_lock.cc', | 198 'mac_security_services_lock.cc', |
200 'mac_security_services_lock.h', | 199 'mac_security_services_lock.h', |
201 'mock_apple_keychain.cc', | 200 'mock_apple_keychain.cc', |
202 'mock_apple_keychain.h', | 201 'mock_apple_keychain.h', |
203 'mock_apple_keychain_ios.cc', | 202 'mock_apple_keychain_ios.cc', |
204 'mock_apple_keychain_mac.cc', | 203 'mock_apple_keychain_mac.cc', |
205 'p224_spake.cc', | 204 'p224_spake.cc', |
206 'p224_spake.h', | 205 'p224_spake.h', |
| 206 'nss_crypto_module_delegate.h', |
207 'nss_util.cc', | 207 'nss_util.cc', |
208 'nss_util.h', | 208 'nss_util.h', |
209 'nss_util_internal.h', | 209 'nss_util_internal.h', |
210 'openpgp_symmetric_encryption.cc', | 210 'openpgp_symmetric_encryption.cc', |
211 'openpgp_symmetric_encryption.h', | 211 'openpgp_symmetric_encryption.h', |
212 'openssl_util.cc', | 212 'openssl_util.cc', |
213 'openssl_util.h', | 213 'openssl_util.h', |
214 'p224.cc', | 214 'p224.cc', |
215 'p224.h', | 215 'p224.h', |
216 'random.h', | 216 'random.h', |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 'configurations': { | 343 'configurations': { |
344 'Common_Base': { | 344 'Common_Base': { |
345 'msvs_target_platform': 'x64', | 345 'msvs_target_platform': 'x64', |
346 }, | 346 }, |
347 }, | 347 }, |
348 }, | 348 }, |
349 ], | 349 ], |
350 }], | 350 }], |
351 ], | 351 ], |
352 } | 352 } |
OLD | NEW |