diff options
author | pwestin <pwestin@chromium.org> | 2014-10-27 08:46:15 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-27 15:46:54 +0000 |
commit | b8f385c6fd01ddd2c3e47a63b822ff18ec3f1fdc (patch) | |
tree | fc9c981607f5c49364cdb95fb26cd3c43edc4dbb /crypto | |
parent | ca469461bbd554ecddc82ea91d2cef7f3df5502e (diff) | |
download | chromium_src-b8f385c6fd01ddd2c3e47a63b822ff18ec3f1fdc.zip chromium_src-b8f385c6fd01ddd2c3e47a63b822ff18ec3f1fdc.tar.gz chromium_src-b8f385c6fd01ddd2c3e47a63b822ff18ec3f1fdc.tar.bz2 |
Adding openssl_bio_string to GN build.
BUG=
Review URL: https://codereview.chromium.org/643703008
Cr-Commit-Position: refs/heads/master@{#301368}
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/BUILD.gn | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/crypto/BUILD.gn b/crypto/BUILD.gn index 43e20a5..d3d318d 100644 --- a/crypto/BUILD.gn +++ b/crypto/BUILD.gn @@ -49,6 +49,8 @@ component("crypto") { "nss_util.cc", "nss_util.h", "nss_util_internal.h", + "openssl_bio_string.cc", + "openssl_bio_string.h", "openssl_util.cc", "openssl_util.h", "p224.cc", @@ -151,6 +153,8 @@ component("crypto") { "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", @@ -205,6 +209,7 @@ test("crypto_unittests") { "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", @@ -225,6 +230,8 @@ test("crypto_unittests") { if (use_openssl) { sources -= [ "nss_util_unittest.cc" ] + } else { + sources -= [ "openssl_bio_string_unittest.cc" ] } deps = [ |