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

Side by Side Diff: crypto/crypto.gyp

Issue 12457004: Curve25519-donna changes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 9 months 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/curve25519.h » ('j') | crypto/curve25519.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # Put all transitive dependencies for Windows HMAC here. 8 # Put all transitive dependencies for Windows HMAC here.
9 # This is required so that we can build them for nacl win64. 9 # This is required so that we can build them for nacl win64.
10 'hmac_win64_related_sources': [ 10 'hmac_win64_related_sources': [
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 '<@(hmac_win64_related_sources)', 179 '<@(hmac_win64_related_sources)',
180 'apple_keychain.h', 180 'apple_keychain.h',
181 'apple_keychain_ios.mm', 181 'apple_keychain_ios.mm',
182 'apple_keychain_mac.mm', 182 'apple_keychain_mac.mm',
183 'capi_util.cc', 183 'capi_util.cc',
184 'capi_util.h', 184 'capi_util.h',
185 'crypto_export.h', 185 'crypto_export.h',
186 'crypto_module_blocking_password_delegate.h', 186 'crypto_module_blocking_password_delegate.h',
187 'cssm_init.cc', 187 'cssm_init.cc',
188 'cssm_init.h', 188 'cssm_init.h',
189 'curve25519.cc',
190 'curve25519.h',
191 'curve25519-donna.c',
189 'ghash.cc', 192 'ghash.cc',
190 'ghash.h', 193 'ghash.h',
191 'ec_private_key.h', 194 'ec_private_key.h',
192 'ec_private_key_nss.cc', 195 'ec_private_key_nss.cc',
193 'ec_private_key_openssl.cc', 196 'ec_private_key_openssl.cc',
194 'ec_signature_creator.cc', 197 'ec_signature_creator.cc',
195 'ec_signature_creator.h', 198 'ec_signature_creator.h',
196 'ec_signature_creator_impl.h', 199 'ec_signature_creator_impl.h',
197 'ec_signature_creator_nss.cc', 200 'ec_signature_creator_nss.cc',
198 'ec_signature_creator_openssl.cc', 201 'ec_signature_creator_openssl.cc',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 ], 258 ],
256 }, 259 },
257 { 260 {
258 'target_name': 'crypto_unittests', 261 'target_name': 'crypto_unittests',
259 'type': 'executable', 262 'type': 'executable',
260 'sources': [ 263 'sources': [
261 # Infrastructure files. 264 # Infrastructure files.
262 'run_all_unittests.cc', 265 'run_all_unittests.cc',
263 266
264 # Tests. 267 # Tests.
268 'curve25519_unittest.cc',
265 'ec_private_key_unittest.cc', 269 'ec_private_key_unittest.cc',
266 'ec_signature_creator_unittest.cc', 270 'ec_signature_creator_unittest.cc',
267 'encryptor_unittest.cc', 271 'encryptor_unittest.cc',
268 'ghash_unittest.cc', 272 'ghash_unittest.cc',
269 'hkdf_unittest.cc', 273 'hkdf_unittest.cc',
270 'hmac_unittest.cc', 274 'hmac_unittest.cc',
271 'nss_util_unittest.cc', 275 'nss_util_unittest.cc',
272 'p224_unittest.cc', 276 'p224_unittest.cc',
273 'p224_spake_unittest.cc', 277 'p224_spake_unittest.cc',
274 'random_unittest.cc', 278 'random_unittest.cc',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 'configurations': { 370 'configurations': {
367 'Common_Base': { 371 'Common_Base': {
368 'msvs_target_platform': 'x64', 372 'msvs_target_platform': 'x64',
369 }, 373 },
370 }, 374 },
371 }, 375 },
372 ], 376 ],
373 }], 377 }],
374 ], 378 ],
375 } 379 }
OLDNEW
« no previous file with comments | « no previous file | crypto/curve25519.h » ('j') | crypto/curve25519.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698