Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: crypto/crypto.gyp

Issue 8431007: crypto: add simple P224 implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | crypto/p224.h » ('j') | crypto/p224.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | crypto/p224.h » ('j') | crypto/p224.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698