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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 'third_party/nss/chromium-nss.h', | 236 'third_party/nss/chromium-nss.h', |
237 'third_party/nss/pk11akey.cc', | 237 'third_party/nss/pk11akey.cc', |
238 'third_party/nss/rsawrapr.c', | 238 'third_party/nss/rsawrapr.c', |
239 'third_party/nss/secsign.cc', | 239 'third_party/nss/secsign.cc', |
240 ], | 240 ], |
241 }, | 241 }, |
242 { | 242 { |
243 'target_name': 'crypto_unittests', | 243 'target_name': 'crypto_unittests', |
244 'type': 'executable', | 244 'type': 'executable', |
245 'sources': [ | 245 'sources': [ |
246 # Infrastructure files. | |
247 'run_all_unittests.cc', | |
248 | |
249 # Tests. | |
250 'curve25519_unittest.cc', | 246 'curve25519_unittest.cc', |
251 'ec_private_key_unittest.cc', | 247 'ec_private_key_unittest.cc', |
252 'ec_signature_creator_unittest.cc', | 248 'ec_signature_creator_unittest.cc', |
253 'encryptor_unittest.cc', | 249 'encryptor_unittest.cc', |
254 'ghash_unittest.cc', | 250 'ghash_unittest.cc', |
255 'hkdf_unittest.cc', | 251 'hkdf_unittest.cc', |
256 'hmac_unittest.cc', | 252 'hmac_unittest.cc', |
257 'nss_util_unittest.cc', | 253 'nss_util_unittest.cc', |
258 'p224_unittest.cc', | 254 'p224_unittest.cc', |
259 'p224_spake_unittest.cc', | 255 'p224_spake_unittest.cc', |
260 'random_unittest.cc', | 256 'random_unittest.cc', |
261 'rsa_private_key_unittest.cc', | 257 'rsa_private_key_unittest.cc', |
262 'rsa_private_key_nss_unittest.cc', | 258 'rsa_private_key_nss_unittest.cc', |
263 'secure_hash_unittest.cc', | 259 'secure_hash_unittest.cc', |
264 'sha2_unittest.cc', | 260 'sha2_unittest.cc', |
265 'signature_creator_unittest.cc', | 261 'signature_creator_unittest.cc', |
266 'signature_verifier_unittest.cc', | 262 'signature_verifier_unittest.cc', |
267 'symmetric_key_unittest.cc', | 263 'symmetric_key_unittest.cc', |
268 'openpgp_symmetric_encryption_unittest.cc', | 264 'openpgp_symmetric_encryption_unittest.cc', |
269 ], | 265 ], |
270 'dependencies': [ | 266 'dependencies': [ |
271 'crypto', | 267 'crypto', |
272 '../base/base.gyp:base', | 268 '../base/base.gyp:base', |
| 269 '../base/base.gyp:run_all_unittests', |
273 '../base/base.gyp:test_support_base', | 270 '../base/base.gyp:test_support_base', |
274 '../testing/gmock.gyp:gmock', | 271 '../testing/gmock.gyp:gmock', |
275 '../testing/gtest.gyp:gtest', | 272 '../testing/gtest.gyp:gtest', |
276 ], | 273 ], |
277 'conditions': [ | 274 'conditions': [ |
278 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 275 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
279 'conditions': [ | 276 'conditions': [ |
280 [ 'linux_use_tcmalloc==1', { | 277 [ 'linux_use_tcmalloc==1', { |
281 'dependencies': [ | 278 'dependencies': [ |
282 '../base/allocator/allocator.gyp:allocator', | 279 '../base/allocator/allocator.gyp:allocator', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 'configurations': { | 340 'configurations': { |
344 'Common_Base': { | 341 'Common_Base': { |
345 'msvs_target_platform': 'x64', | 342 'msvs_target_platform': 'x64', |
346 }, | 343 }, |
347 }, | 344 }, |
348 }, | 345 }, |
349 ], | 346 ], |
350 }], | 347 }], |
351 ], | 348 ], |
352 } | 349 } |
OLD | NEW |