From c97c80a2d9f9402cbacc4c369df329e829fe06bd Mon Sep 17 00:00:00 2001 From: quguiren Date: Fri, 27 Oct 2023 18:40:59 +0800 Subject: [PATCH] =?UTF-8?q?fixed=20b2ddb44=20from=20https://gitee.com/qugr?= =?UTF-8?q?soft/third=5Fparty=5Fopenssl/pulls/141=20fixed=20b3f54da=20from?= =?UTF-8?q?=20https://gitee.com/qugrsoft/third=5Fparty=5Fopenssl/pulls/140?= =?UTF-8?q?=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