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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 'encryptor_openssl.cc', | 124 'encryptor_openssl.cc', |
125 'encryptor_win.cc', | 125 'encryptor_win.cc', |
126 'hmac.cc', | 126 'hmac.cc', |
127 'hmac.h', | 127 'hmac.h', |
128 'hmac_mac.cc', | 128 'hmac_mac.cc', |
129 'hmac_nss.cc', | 129 'hmac_nss.cc', |
130 'hmac_openssl.cc', | 130 'hmac_openssl.cc', |
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 'mutual_auth.cc', |
| 135 'mutual_auth.h', |
134 'nss_util.cc', | 136 'nss_util.cc', |
135 'nss_util.h', | 137 'nss_util.h', |
136 'nss_util_internal.h', | 138 'nss_util_internal.h', |
137 'openpgp_symmetric_encryption.cc', | 139 'openpgp_symmetric_encryption.cc', |
138 'openpgp_symmetric_encryption.h', | 140 'openpgp_symmetric_encryption.h', |
139 'openssl_util.cc', | 141 'openssl_util.cc', |
140 'openssl_util.h', | 142 'openssl_util.h', |
141 'p224.cc', | 143 'p224.cc', |
142 'p224.h', | 144 'p224.h', |
143 'rsa_private_key.cc', | 145 'rsa_private_key.cc', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 'target_name': 'crypto_unittests', | 182 'target_name': 'crypto_unittests', |
181 'type': 'executable', | 183 'type': 'executable', |
182 'sources': [ | 184 'sources': [ |
183 # Infrastructure files. | 185 # Infrastructure files. |
184 'run_all_unittests.cc', | 186 'run_all_unittests.cc', |
185 | 187 |
186 # Tests. | 188 # Tests. |
187 'encryptor_unittest.cc', | 189 'encryptor_unittest.cc', |
188 'hmac_unittest.cc', | 190 'hmac_unittest.cc', |
189 'p224_unittest.cc', | 191 'p224_unittest.cc', |
| 192 'mutual_auth_unittest.cc', |
190 'rsa_private_key_unittest.cc', | 193 'rsa_private_key_unittest.cc', |
191 'rsa_private_key_nss_unittest.cc', | 194 'rsa_private_key_nss_unittest.cc', |
192 'secure_hash_unittest.cc', | 195 'secure_hash_unittest.cc', |
193 'sha2_unittest.cc', | 196 'sha2_unittest.cc', |
194 'signature_creator_unittest.cc', | 197 'signature_creator_unittest.cc', |
195 'signature_verifier_unittest.cc', | 198 'signature_verifier_unittest.cc', |
196 'symmetric_key_unittest.cc', | 199 'symmetric_key_unittest.cc', |
197 'openpgp_symmetric_encryption_unittest.cc', | 200 'openpgp_symmetric_encryption_unittest.cc', |
198 ], | 201 ], |
199 'dependencies': [ | 202 'dependencies': [ |
(...skipping 30 matching lines...) Expand all Loading... |
230 [ 'use_openssl==1', { | 233 [ 'use_openssl==1', { |
231 'sources!': [ | 234 'sources!': [ |
232 'openpgp_symmetric_encryption_unittest.cc', | 235 'openpgp_symmetric_encryption_unittest.cc', |
233 'rsa_private_key_nss_unittest.cc', | 236 'rsa_private_key_nss_unittest.cc', |
234 ], | 237 ], |
235 }], | 238 }], |
236 ], | 239 ], |
237 }, | 240 }, |
238 ], | 241 ], |
239 } | 242 } |
OLD | NEW |