| Index: crypto/BUILD.gn
|
| diff --git a/crypto/BUILD.gn b/crypto/BUILD.gn
|
| index 27e786ce85aef51f83c4e0f71feeaf6150f4a130..c1eabe634c11be577e6c9d5e7af963c2f87e6e32 100644
|
| --- a/crypto/BUILD.gn
|
| +++ b/crypto/BUILD.gn
|
| @@ -8,6 +8,8 @@ import("//testing/test.gni")
|
| component("crypto") {
|
| output_name = "crcrypto" # Avoid colliding with OpenSSL's libcrypto.
|
| sources = [
|
| + "aead_openssl.cc",
|
| + "aead_openssl.h",
|
| "apple_keychain.h",
|
| "apple_keychain_ios.mm",
|
| "apple_keychain_mac.mm",
|
| @@ -151,6 +153,8 @@ component("crypto") {
|
| } else {
|
| # Remove OpenSSL when using NSS.
|
| sources -= [
|
| + "aead_openssl.cc",
|
| + "aead_openssl.h",
|
| "ec_private_key_openssl.cc",
|
| "ec_signature_creator_openssl.cc",
|
| "encryptor_openssl.cc",
|
|
|