From 015c3435daf725f348a50f8775cc7474d45e6119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=96=87=E8=BF=AA?= Date: Mon, 26 Dec 2022 09:26:02 +0800 Subject: [PATCH] fixed b04bc60 from https://gitee.com/wz109/filemanagement_file_api/pulls/123 change static to shared MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 张文迪 --- interfaces/kits/js/BUILD.gn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interfaces/kits/js/BUILD.gn b/interfaces/kits/js/BUILD.gn index 8b4b5914d..22c2178b7 100644 --- a/interfaces/kits/js/BUILD.gn +++ b/interfaces/kits/js/BUILD.gn @@ -92,8 +92,8 @@ ohos_shared_library("fileio") { deps = [ "//foundation/arkui/napi:ace_napi", "//foundation/filemanagement/file_api/interfaces/kits/native:remote_uri_native", - "//third_party/bounds_checking_function:libsec_static", - "//third_party/openssl:libcrypto_static", + "//third_party/bounds_checking_function:libsec_shared", + "//third_party/openssl:libcrypto_shared", ] external_deps = [ "hiviewdfx_hilog_native:libhilog" ] @@ -154,7 +154,7 @@ ohos_shared_library("file") { deps = [ "${aafwk_kits_path}/ability/native:abilitykit_native", "//foundation/arkui/napi:ace_napi", - "//third_party/bounds_checking_function:libsec_static", + "//third_party/bounds_checking_function:libsec_shared", ] external_deps = [ -- Gitee