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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 '<@(hmac_win64_related_sources)', | 175 '<@(hmac_win64_related_sources)', |
176 'apple_keychain.h', | 176 'apple_keychain.h', |
177 'apple_keychain_ios.mm', | 177 'apple_keychain_ios.mm', |
178 'apple_keychain_mac.mm', | 178 'apple_keychain_mac.mm', |
179 'capi_util.cc', | 179 'capi_util.cc', |
180 'capi_util.h', | 180 'capi_util.h', |
181 'crypto_export.h', | 181 'crypto_export.h', |
182 'crypto_module_blocking_password_delegate.h', | 182 'crypto_module_blocking_password_delegate.h', |
183 'cssm_init.cc', | 183 'cssm_init.cc', |
184 'cssm_init.h', | 184 'cssm_init.h', |
| 185 'ghash.cc', |
| 186 'ghash.h', |
185 'ec_private_key.h', | 187 'ec_private_key.h', |
186 'ec_private_key_nss.cc', | 188 'ec_private_key_nss.cc', |
187 'ec_private_key_openssl.cc', | 189 'ec_private_key_openssl.cc', |
188 'ec_signature_creator.cc', | 190 'ec_signature_creator.cc', |
189 'ec_signature_creator.h', | 191 'ec_signature_creator.h', |
190 'ec_signature_creator_impl.h', | 192 'ec_signature_creator_impl.h', |
191 'ec_signature_creator_nss.cc', | 193 'ec_signature_creator_nss.cc', |
192 'ec_signature_creator_openssl.cc', | 194 'ec_signature_creator_openssl.cc', |
193 'encryptor.cc', | 195 'encryptor.cc', |
194 'encryptor.h', | 196 'encryptor.h', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 'target_name': 'crypto_unittests', | 252 'target_name': 'crypto_unittests', |
251 'type': 'executable', | 253 'type': 'executable', |
252 'sources': [ | 254 'sources': [ |
253 # Infrastructure files. | 255 # Infrastructure files. |
254 'run_all_unittests.cc', | 256 'run_all_unittests.cc', |
255 | 257 |
256 # Tests. | 258 # Tests. |
257 'ec_private_key_unittest.cc', | 259 'ec_private_key_unittest.cc', |
258 'ec_signature_creator_unittest.cc', | 260 'ec_signature_creator_unittest.cc', |
259 'encryptor_unittest.cc', | 261 'encryptor_unittest.cc', |
| 262 'ghash_unittest.cc', |
260 'hmac_unittest.cc', | 263 'hmac_unittest.cc', |
261 'nss_util_unittest.cc', | 264 'nss_util_unittest.cc', |
262 'p224_unittest.cc', | 265 'p224_unittest.cc', |
263 'p224_spake_unittest.cc', | 266 'p224_spake_unittest.cc', |
264 'random_unittest.cc', | 267 'random_unittest.cc', |
265 'rsa_private_key_unittest.cc', | 268 'rsa_private_key_unittest.cc', |
266 'rsa_private_key_nss_unittest.cc', | 269 'rsa_private_key_nss_unittest.cc', |
267 'secure_hash_unittest.cc', | 270 'secure_hash_unittest.cc', |
268 'sha2_unittest.cc', | 271 'sha2_unittest.cc', |
269 'signature_creator_unittest.cc', | 272 'signature_creator_unittest.cc', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 'configurations': { | 355 'configurations': { |
353 'Common_Base': { | 356 'Common_Base': { |
354 'msvs_target_platform': 'x64', | 357 'msvs_target_platform': 'x64', |
355 }, | 358 }, |
356 }, | 359 }, |
357 }, | 360 }, |
358 ], | 361 ], |
359 }], | 362 }], |
360 ], | 363 ], |
361 } | 364 } |
OLD | NEW |