From d46baaac9c1fe58e8a28845731ae7b28780f247c Mon Sep 17 00:00:00 2001 From: "mattm@chromium.org" Date: Thu, 22 May 2014 04:36:07 +0000 Subject: Add OpenSSL BIO method that writes to a std::string. BUG=none Review URL: https://codereview.chromium.org/286263006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272100 0039d316-1c4b-4281-b951-d872f2087c98 --- crypto/crypto.gyp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'crypto/crypto.gyp') diff --git a/crypto/crypto.gyp b/crypto/crypto.gyp index ec1e278..0c472ff 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', + ], }], ], }, -- cgit v1.1