OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 'target_name': 'crypto_unittests', | 202 'target_name': 'crypto_unittests', |
203 'type': 'executable', | 203 'type': 'executable', |
204 'sources': [ | 204 'sources': [ |
205 # Infrastructure files. | 205 # Infrastructure files. |
206 'run_all_unittests.cc', | 206 'run_all_unittests.cc', |
207 | 207 |
208 # Tests. | 208 # Tests. |
209 'ec_private_key_unittest.cc', | 209 'ec_private_key_unittest.cc', |
210 'encryptor_unittest.cc', | 210 'encryptor_unittest.cc', |
211 'hmac_unittest.cc', | 211 'hmac_unittest.cc', |
| 212 'nss_util_unittest.cc', |
212 'p224_unittest.cc', | 213 'p224_unittest.cc', |
213 'p224_spake_unittest.cc', | 214 'p224_spake_unittest.cc', |
214 'rsa_private_key_unittest.cc', | 215 'rsa_private_key_unittest.cc', |
215 'rsa_private_key_nss_unittest.cc', | 216 'rsa_private_key_nss_unittest.cc', |
216 'secure_hash_unittest.cc', | 217 'secure_hash_unittest.cc', |
217 'sha2_unittest.cc', | 218 'sha2_unittest.cc', |
218 'signature_creator_unittest.cc', | 219 'signature_creator_unittest.cc', |
219 'signature_verifier_unittest.cc', | 220 'signature_verifier_unittest.cc', |
220 'symmetric_key_unittest.cc', | 221 'symmetric_key_unittest.cc', |
221 'openpgp_symmetric_encryption_unittest.cc', | 222 'openpgp_symmetric_encryption_unittest.cc', |
(...skipping 24 matching lines...) Expand all Loading... |
246 'openpgp_symmetric_encryption_unittest.cc', | 247 'openpgp_symmetric_encryption_unittest.cc', |
247 ] | 248 ] |
248 }], | 249 }], |
249 [ 'OS == "mac" or OS == "win"', { | 250 [ 'OS == "mac" or OS == "win"', { |
250 'dependencies': [ | 251 'dependencies': [ |
251 '../third_party/nss/nss.gyp:nss', | 252 '../third_party/nss/nss.gyp:nss', |
252 ], | 253 ], |
253 }], | 254 }], |
254 [ 'use_openssl==1', { | 255 [ 'use_openssl==1', { |
255 'sources!': [ | 256 'sources!': [ |
| 257 'nss_util_unittest.cc', |
256 'openpgp_symmetric_encryption_unittest.cc', | 258 'openpgp_symmetric_encryption_unittest.cc', |
257 'rsa_private_key_nss_unittest.cc', | 259 'rsa_private_key_nss_unittest.cc', |
258 ], | 260 ], |
259 }], | 261 }], |
260 ], | 262 ], |
261 }, | 263 }, |
262 ], | 264 ], |
263 } | 265 } |
OLD | NEW |