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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 'encryptor_openssl.cc', | 140 'encryptor_openssl.cc', |
141 'encryptor_win.cc', | 141 'encryptor_win.cc', |
142 'hmac.cc', | 142 'hmac.cc', |
143 'hmac.h', | 143 'hmac.h', |
144 'hmac_mac.cc', | 144 'hmac_mac.cc', |
145 'hmac_nss.cc', | 145 'hmac_nss.cc', |
146 'hmac_openssl.cc', | 146 'hmac_openssl.cc', |
147 'hmac_win.cc', | 147 'hmac_win.cc', |
148 'mac_security_services_lock.cc', | 148 'mac_security_services_lock.cc', |
149 'mac_security_services_lock.h', | 149 'mac_security_services_lock.h', |
| 150 'p224_spake.cc', |
| 151 'p224_spake.h', |
150 'nss_util.cc', | 152 'nss_util.cc', |
151 'nss_util.h', | 153 'nss_util.h', |
152 'nss_util_internal.h', | 154 'nss_util_internal.h', |
153 'openpgp_symmetric_encryption.cc', | 155 'openpgp_symmetric_encryption.cc', |
154 'openpgp_symmetric_encryption.h', | 156 'openpgp_symmetric_encryption.h', |
155 'openssl_util.cc', | 157 'openssl_util.cc', |
156 'openssl_util.h', | 158 'openssl_util.h', |
157 'p224.cc', | 159 'p224.cc', |
158 'p224.h', | 160 'p224.h', |
159 'rsa_private_key.cc', | 161 'rsa_private_key.cc', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 'type': 'executable', | 201 'type': 'executable', |
200 'sources': [ | 202 'sources': [ |
201 # Infrastructure files. | 203 # Infrastructure files. |
202 'run_all_unittests.cc', | 204 'run_all_unittests.cc', |
203 | 205 |
204 # Tests. | 206 # Tests. |
205 'ec_private_key_unittest.cc', | 207 'ec_private_key_unittest.cc', |
206 'encryptor_unittest.cc', | 208 'encryptor_unittest.cc', |
207 'hmac_unittest.cc', | 209 'hmac_unittest.cc', |
208 'p224_unittest.cc', | 210 'p224_unittest.cc', |
| 211 'p224_spake_unittest.cc', |
209 'rsa_private_key_unittest.cc', | 212 'rsa_private_key_unittest.cc', |
210 'rsa_private_key_nss_unittest.cc', | 213 'rsa_private_key_nss_unittest.cc', |
211 'secure_hash_unittest.cc', | 214 'secure_hash_unittest.cc', |
212 'sha2_unittest.cc', | 215 'sha2_unittest.cc', |
213 'signature_creator_unittest.cc', | 216 'signature_creator_unittest.cc', |
214 'signature_verifier_unittest.cc', | 217 'signature_verifier_unittest.cc', |
215 'symmetric_key_unittest.cc', | 218 'symmetric_key_unittest.cc', |
216 'openpgp_symmetric_encryption_unittest.cc', | 219 'openpgp_symmetric_encryption_unittest.cc', |
217 ], | 220 ], |
218 'dependencies': [ | 221 'dependencies': [ |
(...skipping 30 matching lines...) Expand all Loading... |
249 [ 'use_openssl==1', { | 252 [ 'use_openssl==1', { |
250 'sources!': [ | 253 'sources!': [ |
251 'openpgp_symmetric_encryption_unittest.cc', | 254 'openpgp_symmetric_encryption_unittest.cc', |
252 'rsa_private_key_nss_unittest.cc', | 255 'rsa_private_key_nss_unittest.cc', |
253 ], | 256 ], |
254 }], | 257 }], |
255 ], | 258 ], |
256 }, | 259 }, |
257 ], | 260 ], |
258 } | 261 } |
OLD | NEW |