| Index: crypto/BUILD.gn
|
| diff --git a/crypto/BUILD.gn b/crypto/BUILD.gn
|
| index 43e20a55fd180677ba09fe521ee96f531963f3e8..d3d318de50ffcb82b1c8c61ffeea2aaa6a12f866 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 = [
|
|
|