| Index: crypto/BUILD.gn
|
| diff --git a/crypto/BUILD.gn b/crypto/BUILD.gn
|
| index 2b868936b85fa02b4159102d04803f170f5e5d61..d42065fdab0784951fd77cbde18e1279bf54f773 100644
|
| --- a/crypto/BUILD.gn
|
| +++ b/crypto/BUILD.gn
|
| @@ -8,8 +8,8 @@ import("//testing/test.gni")
|
| component("crypto") {
|
| output_name = "crcrypto" # Avoid colliding with OpenSSL's libcrypto.
|
| sources = [
|
| - "aead_openssl.cc",
|
| - "aead_openssl.h",
|
| + "aead.cc",
|
| + "aead.h",
|
| "apple_keychain.h",
|
| "apple_keychain_ios.mm",
|
| "apple_keychain_mac.mm",
|
| @@ -19,17 +19,16 @@ component("crypto") {
|
| "crypto_export.h",
|
| "cssm_init.cc",
|
| "cssm_init.h",
|
| + "curve25519.cc",
|
| "curve25519.h",
|
| - "curve25519_openssl.cc",
|
| + "ec_private_key.cc",
|
| "ec_private_key.h",
|
| - "ec_private_key_openssl.cc",
|
| "ec_signature_creator.cc",
|
| "ec_signature_creator.h",
|
| "ec_signature_creator_impl.h",
|
| "ec_signature_creator_openssl.cc",
|
| "encryptor.cc",
|
| "encryptor.h",
|
| - "encryptor_openssl.cc",
|
| "hkdf.cc",
|
| "hkdf.h",
|
| "hmac.cc",
|
| @@ -59,20 +58,20 @@ component("crypto") {
|
| "p224_spake.h",
|
| "random.cc",
|
| "random.h",
|
| + "rsa_private_key.cc",
|
| "rsa_private_key.h",
|
| - "rsa_private_key_openssl.cc",
|
| "scoped_capi_types.h",
|
| "scoped_nss_types.h",
|
| + "secure_hash.cc",
|
| "secure_hash.h",
|
| - "secure_hash_openssl.cc",
|
| "secure_util.cc",
|
| "secure_util.h",
|
| "sha2.cc",
|
| "sha2.h",
|
| + "signature_creator.cc",
|
| "signature_creator.h",
|
| - "signature_creator_openssl.cc",
|
| + "signature_verifier.cc",
|
| "signature_verifier.h",
|
| - "signature_verifier_openssl.cc",
|
| "symmetric_key.h",
|
| "symmetric_key_openssl.cc",
|
| "third_party/nss/chromium-sha256.h",
|
| @@ -165,7 +164,7 @@ if (false && is_win) {
|
|
|
| test("crypto_unittests") {
|
| sources = [
|
| - "aead_openssl_unittest.cc",
|
| + "aead_unittest.cc",
|
| "curve25519_unittest.cc",
|
| "ec_private_key_unittest.cc",
|
| "ec_signature_creator_unittest.cc",
|
|
|