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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 'p224_spake.h', | 190 'p224_spake.h', |
191 'nss_util.cc', | 191 'nss_util.cc', |
192 'nss_util.h', | 192 'nss_util.h', |
193 'nss_util_internal.h', | 193 'nss_util_internal.h', |
194 'openpgp_symmetric_encryption.cc', | 194 'openpgp_symmetric_encryption.cc', |
195 'openpgp_symmetric_encryption.h', | 195 'openpgp_symmetric_encryption.h', |
196 'openssl_util.cc', | 196 'openssl_util.cc', |
197 'openssl_util.h', | 197 'openssl_util.h', |
198 'p224.cc', | 198 'p224.cc', |
199 'p224.h', | 199 'p224.h', |
| 200 'random.h', |
| 201 'random.cc', |
200 'rsa_private_key.cc', | 202 'rsa_private_key.cc', |
201 'rsa_private_key.h', | 203 'rsa_private_key.h', |
202 'rsa_private_key_mac.cc', | 204 'rsa_private_key_mac.cc', |
203 'rsa_private_key_nss.cc', | 205 'rsa_private_key_nss.cc', |
204 'rsa_private_key_openssl.cc', | 206 'rsa_private_key_openssl.cc', |
205 'rsa_private_key_win.cc', | 207 'rsa_private_key_win.cc', |
206 'scoped_capi_types.h', | 208 'scoped_capi_types.h', |
207 'scoped_nss_types.h', | 209 'scoped_nss_types.h', |
208 'secure_hash.h', | 210 'secure_hash.h', |
209 'secure_hash_default.cc', | 211 'secure_hash_default.cc', |
(...skipping 25 matching lines...) Expand all Loading... |
235 'run_all_unittests.cc', | 237 'run_all_unittests.cc', |
236 | 238 |
237 # Tests. | 239 # Tests. |
238 'ec_private_key_unittest.cc', | 240 'ec_private_key_unittest.cc', |
239 'ec_signature_creator_unittest.cc', | 241 'ec_signature_creator_unittest.cc', |
240 'encryptor_unittest.cc', | 242 'encryptor_unittest.cc', |
241 'hmac_unittest.cc', | 243 'hmac_unittest.cc', |
242 'nss_util_unittest.cc', | 244 'nss_util_unittest.cc', |
243 'p224_unittest.cc', | 245 'p224_unittest.cc', |
244 'p224_spake_unittest.cc', | 246 'p224_spake_unittest.cc', |
| 247 'random_unittest.cc', |
245 'rsa_private_key_unittest.cc', | 248 'rsa_private_key_unittest.cc', |
246 'rsa_private_key_nss_unittest.cc', | 249 'rsa_private_key_nss_unittest.cc', |
247 'secure_hash_unittest.cc', | 250 'secure_hash_unittest.cc', |
248 'sha2_unittest.cc', | 251 'sha2_unittest.cc', |
249 'signature_creator_unittest.cc', | 252 'signature_creator_unittest.cc', |
250 'signature_verifier_unittest.cc', | 253 'signature_verifier_unittest.cc', |
251 'symmetric_key_unittest.cc', | 254 'symmetric_key_unittest.cc', |
252 'openpgp_symmetric_encryption_unittest.cc', | 255 'openpgp_symmetric_encryption_unittest.cc', |
253 ], | 256 ], |
254 'dependencies': [ | 257 'dependencies': [ |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 'configurations': { | 326 'configurations': { |
324 'Common_Base': { | 327 'Common_Base': { |
325 'msvs_target_platform': 'x64', | 328 'msvs_target_platform': 'x64', |
326 }, | 329 }, |
327 }, | 330 }, |
328 }, | 331 }, |
329 ], | 332 ], |
330 }], | 333 }], |
331 ], | 334 ], |
332 } | 335 } |
OLD | NEW |