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

Unified Diff: crypto/crypto.gyp

Issue 8413024: Add ECPrivateKey for Elliptic Curve keypair generation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win build for real 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 side-by-side diff with in-line comments
Download patch
Index: crypto/crypto.gyp
diff --git a/crypto/crypto.gyp b/crypto/crypto.gyp
index 7b031b2993c1147aab67c18cdced7a2af3322a0e..97901b4cb6464ce89e6586bb6edf7bb365bee909 100644
--- a/crypto/crypto.gyp
+++ b/crypto/crypto.gyp
@@ -38,6 +38,7 @@
}, { # os_posix != 1 or OS == "mac"
'sources/': [
['exclude', '_nss\.cc$'],
+ ['include', 'ec_private_key_nss\.cc$'],
],
'sources!': [
'openpgp_symmetric_encryption.cc',
@@ -81,6 +82,7 @@
# TODO(joth): Use a glob to match exclude patterns once the
# OpenSSL file set is complete.
'sources!': [
+ 'ec_private_key_nss.cc',
'encryptor_nss.cc',
'hmac_nss.cc',
'nss_util.cc',
@@ -98,6 +100,7 @@
],
}, {
'sources!': [
+ 'ec_private_key_openssl.cc',
'encryptor_openssl.cc',
'hmac_openssl.cc',
'openssl_util.cc',
@@ -117,6 +120,9 @@
'crypto_module_blocking_password_delegate.h',
'cssm_init.cc',
'cssm_init.h',
+ 'ec_private_key.h',
+ 'ec_private_key_nss.cc',
+ 'ec_private_key_openssl.cc',
'encryptor.cc',
'encryptor.h',
'encryptor_mac.cc',
@@ -182,6 +188,7 @@
'run_all_unittests.cc',
# Tests.
+ 'ec_private_key_unittest.cc',
'encryptor_unittest.cc',
'hmac_unittest.cc',
'rsa_private_key_unittest.cc',

Powered by Google App Engine
This is Rietveld 408576698