| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 'hmac_win.cc', | 131 'hmac_win.cc', |
| 132 'mac_security_services_lock.cc', | 132 'mac_security_services_lock.cc', |
| 133 'mac_security_services_lock.h', | 133 'mac_security_services_lock.h', |
| 134 'nss_util.cc', | 134 'nss_util.cc', |
| 135 'nss_util.h', | 135 'nss_util.h', |
| 136 'nss_util_internal.h', | 136 'nss_util_internal.h', |
| 137 'openpgp_symmetric_encryption.cc', | 137 'openpgp_symmetric_encryption.cc', |
| 138 'openpgp_symmetric_encryption.h', | 138 'openpgp_symmetric_encryption.h', |
| 139 'openssl_util.cc', | 139 'openssl_util.cc', |
| 140 'openssl_util.h', | 140 'openssl_util.h', |
| 141 'p224.cc', |
| 142 'p224.h', |
| 141 'rsa_private_key.cc', | 143 'rsa_private_key.cc', |
| 142 'rsa_private_key.h', | 144 'rsa_private_key.h', |
| 143 'rsa_private_key_mac.cc', | 145 'rsa_private_key_mac.cc', |
| 144 'rsa_private_key_nss.cc', | 146 'rsa_private_key_nss.cc', |
| 145 'rsa_private_key_openssl.cc', | 147 'rsa_private_key_openssl.cc', |
| 146 'rsa_private_key_win.cc', | 148 'rsa_private_key_win.cc', |
| 147 'scoped_capi_types.h', | 149 'scoped_capi_types.h', |
| 148 'scoped_nss_types.h', | 150 'scoped_nss_types.h', |
| 149 'secure_hash.h', | 151 'secure_hash.h', |
| 150 'secure_hash_default.cc', | 152 'secure_hash_default.cc', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 177 { | 179 { |
| 178 'target_name': 'crypto_unittests', | 180 'target_name': 'crypto_unittests', |
| 179 'type': 'executable', | 181 'type': 'executable', |
| 180 'sources': [ | 182 'sources': [ |
| 181 # Infrastructure files. | 183 # Infrastructure files. |
| 182 'run_all_unittests.cc', | 184 'run_all_unittests.cc', |
| 183 | 185 |
| 184 # Tests. | 186 # Tests. |
| 185 'encryptor_unittest.cc', | 187 'encryptor_unittest.cc', |
| 186 'hmac_unittest.cc', | 188 'hmac_unittest.cc', |
| 189 'p224_unittest.cc', |
| 187 'rsa_private_key_unittest.cc', | 190 'rsa_private_key_unittest.cc', |
| 188 'rsa_private_key_nss_unittest.cc', | 191 'rsa_private_key_nss_unittest.cc', |
| 189 'secure_hash_unittest.cc', | 192 'secure_hash_unittest.cc', |
| 190 'sha2_unittest.cc', | 193 'sha2_unittest.cc', |
| 191 'signature_creator_unittest.cc', | 194 'signature_creator_unittest.cc', |
| 192 'signature_verifier_unittest.cc', | 195 'signature_verifier_unittest.cc', |
| 193 'symmetric_key_unittest.cc', | 196 'symmetric_key_unittest.cc', |
| 194 'openpgp_symmetric_encryption_unittest.cc', | 197 'openpgp_symmetric_encryption_unittest.cc', |
| 195 ], | 198 ], |
| 196 'dependencies': [ | 199 'dependencies': [ |
| (...skipping 30 matching lines...) Expand all Loading... |
| 227 [ 'use_openssl==1', { | 230 [ 'use_openssl==1', { |
| 228 'sources!': [ | 231 'sources!': [ |
| 229 'openpgp_symmetric_encryption_unittest.cc', | 232 'openpgp_symmetric_encryption_unittest.cc', |
| 230 'rsa_private_key_nss_unittest.cc', | 233 'rsa_private_key_nss_unittest.cc', |
| 231 ], | 234 ], |
| 232 }], | 235 }], |
| 233 ], | 236 ], |
| 234 }, | 237 }, |
| 235 ], | 238 ], |
| 236 } | 239 } |
| OLD | NEW |