From d39189b6e2e6fcfb11e8db96a873305381839597 Mon Sep 17 00:00:00 2001 From: quguiren Date: Fri, 27 Oct 2023 18:40:59 +0800 Subject: [PATCH] =?UTF-8?q?fixed=20c97c80a=20from=20https://gitee.com/qugr?= =?UTF-8?q?soft/third=5Fparty=5Fopenssl/pulls/142=20fixed=20b2ddb44=20from?= =?UTF-8?q?=20https://gitee.com/qugrsoft/third=5Fparty=5Fopenssl/pulls/141?= =?UTF-8?q?=20fixed=20b3f54da=20from=20https://gitee.com/qugrsoft/third=5F?= =?UTF-8?q?party=5Fopenssl/pulls/140=20IOS=20=E6=8B=86=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: quguiren --- BUILD.gn | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/BUILD.gn b/BUILD.gn index aebd8145dc..221b8a7c59 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -1511,6 +1511,16 @@ ohos_source_set("crypto_source") { deps = [ ":openssl_build_all_generated" ] } +ohos_source_set("arkui_crypto") { + subsystem_name = "thirdparty" + part_name = "openssl" + deps = [ + ":crypto_source", + ":openssl.cnf", + ] + public_configs = [ ":crypto_config_public" ] +} + ohos_static_library("libcrypto_static") { subsystem_name = "thirdparty" part_name = "openssl" @@ -1641,6 +1651,20 @@ ohos_source_set("ssl_source") { deps = [ ":openssl_build_all_generated" ] } +ohos_source_set("arkui_ssl") { + subsystem_name = "thirdparty" + part_name = "openssl" + deps = [ + ":libcrypto_static", + ":openssl.cnf", + ":ssl_source", + ] + public_configs = [ + ":crypto_config_public", + ":ssl_config_public", + ] +} + ohos_static_library("libssl_static") { subsystem_name = "thirdparty" part_name = "openssl" -- Gitee