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

Unified Diff: crypto/crypto.gyp

Issue 286263006: Add OpenSSL BIO method that writes to a std::string. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: implement puts Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | crypto/crypto.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/crypto.gyp
diff --git a/crypto/crypto.gyp b/crypto/crypto.gyp
index ec1e2782a1a3582bee006af43da7c1876e4f0556..0c472ffc2ebffa4331f7c0fd153eeb7ada1e00a1 100644
--- a/crypto/crypto.gyp
+++ b/crypto/crypto.gyp
@@ -132,6 +132,8 @@
'ec_signature_creator_openssl.cc',
'encryptor_openssl.cc',
'hmac_openssl.cc',
+ 'openssl_bio_string.cc',
+ 'openssl_bio_string.h',
'openssl_util.cc',
'openssl_util.h',
'rsa_private_key_openssl.cc',
@@ -158,6 +160,7 @@
'hkdf_unittest.cc',
'hmac_unittest.cc',
'nss_util_unittest.cc',
+ 'openssl_bio_string_unittest.cc',
'p224_unittest.cc',
'p224_spake_unittest.cc',
'random_unittest.cc',
@@ -205,10 +208,17 @@
'msvs_disabled_warnings': [4267, ],
}],
[ 'use_openssl==1', {
+ 'dependencies': [
+ '../third_party/openssl/openssl.gyp:openssl',
+ ],
'sources!': [
'nss_util_unittest.cc',
'rsa_private_key_nss_unittest.cc',
],
+ }, {
+ 'sources!': [
+ 'openssl_bio_string_unittest.cc',
+ ],
}],
],
},
« no previous file with comments | « no previous file | crypto/crypto.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698