| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 'ec_private_key_openssl.cc', | 193 'ec_private_key_openssl.cc', |
| 194 'ec_signature_creator.cc', | 194 'ec_signature_creator.cc', |
| 195 'ec_signature_creator.h', | 195 'ec_signature_creator.h', |
| 196 'ec_signature_creator_impl.h', | 196 'ec_signature_creator_impl.h', |
| 197 'ec_signature_creator_nss.cc', | 197 'ec_signature_creator_nss.cc', |
| 198 'ec_signature_creator_openssl.cc', | 198 'ec_signature_creator_openssl.cc', |
| 199 'encryptor.cc', | 199 'encryptor.cc', |
| 200 'encryptor.h', | 200 'encryptor.h', |
| 201 'encryptor_nss.cc', | 201 'encryptor_nss.cc', |
| 202 'encryptor_openssl.cc', | 202 'encryptor_openssl.cc', |
| 203 'hkdf.cc', | |
| 204 'hkdf.h', | |
| 205 'hmac_nss.cc', | 203 'hmac_nss.cc', |
| 206 'hmac_openssl.cc', | 204 'hmac_openssl.cc', |
| 207 'mac_security_services_lock.cc', | 205 'mac_security_services_lock.cc', |
| 208 'mac_security_services_lock.h', | 206 'mac_security_services_lock.h', |
| 209 'mock_apple_keychain.cc', | 207 'mock_apple_keychain.cc', |
| 210 'mock_apple_keychain.h', | 208 'mock_apple_keychain.h', |
| 211 'mock_apple_keychain_ios.cc', | 209 'mock_apple_keychain_ios.cc', |
| 212 'mock_apple_keychain_mac.cc', | 210 'mock_apple_keychain_mac.cc', |
| 213 'p224_spake.cc', | 211 'p224_spake.cc', |
| 214 'p224_spake.h', | 212 'p224_spake.h', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 'type': 'executable', | 257 'type': 'executable', |
| 260 'sources': [ | 258 'sources': [ |
| 261 # Infrastructure files. | 259 # Infrastructure files. |
| 262 'run_all_unittests.cc', | 260 'run_all_unittests.cc', |
| 263 | 261 |
| 264 # Tests. | 262 # Tests. |
| 265 'ec_private_key_unittest.cc', | 263 'ec_private_key_unittest.cc', |
| 266 'ec_signature_creator_unittest.cc', | 264 'ec_signature_creator_unittest.cc', |
| 267 'encryptor_unittest.cc', | 265 'encryptor_unittest.cc', |
| 268 'ghash_unittest.cc', | 266 'ghash_unittest.cc', |
| 269 'hkdf_unittest.cc', | |
| 270 'hmac_unittest.cc', | 267 'hmac_unittest.cc', |
| 271 'nss_util_unittest.cc', | 268 'nss_util_unittest.cc', |
| 272 'p224_unittest.cc', | 269 'p224_unittest.cc', |
| 273 'p224_spake_unittest.cc', | 270 'p224_spake_unittest.cc', |
| 274 'random_unittest.cc', | 271 'random_unittest.cc', |
| 275 'rsa_private_key_unittest.cc', | 272 'rsa_private_key_unittest.cc', |
| 276 'rsa_private_key_nss_unittest.cc', | 273 'rsa_private_key_nss_unittest.cc', |
| 277 'secure_hash_unittest.cc', | 274 'secure_hash_unittest.cc', |
| 278 'sha2_unittest.cc', | 275 'sha2_unittest.cc', |
| 279 'signature_creator_unittest.cc', | 276 'signature_creator_unittest.cc', |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 'configurations': { | 363 'configurations': { |
| 367 'Common_Base': { | 364 'Common_Base': { |
| 368 'msvs_target_platform': 'x64', | 365 'msvs_target_platform': 'x64', |
| 369 }, | 366 }, |
| 370 }, | 367 }, |
| 371 }, | 368 }, |
| 372 ], | 369 ], |
| 373 }], | 370 }], |
| 374 ], | 371 ], |
| 375 } | 372 } |
| OLD | NEW |