From 4da274a057d7c7beb704cba59f81e7dba87fd164 Mon Sep 17 00:00:00 2001 From: huangyicong Date: Wed, 23 Feb 2022 18:59:02 +0800 Subject: [PATCH] delete ndk_libraries_config Signed-off-by: huangyicong --- README.md | 1 - README_zh.md | 1 - bundle.json | 1 - ndk_libraries_config/BUILD.gn | 25 ------------------- .../bit32/public.libraries-z.txt | 13 ---------- .../bit64/public.libraries-z.txt | 13 ---------- 6 files changed, 54 deletions(-) delete mode 100644 ndk_libraries_config/BUILD.gn delete mode 100644 ndk_libraries_config/bit32/public.libraries-z.txt delete mode 100644 ndk_libraries_config/bit64/public.libraries-z.txt diff --git a/README.md b/README.md index 41cf106..63948ce 100755 --- a/README.md +++ b/README.md @@ -22,7 +22,6 @@ utils/native └─ base ├── include # Header files of APIs open to other subsystems ├── src # Source files - ├── ndk_libraries_config # Configuration of the NDK library └── test # Test code ``` diff --git a/README_zh.md b/README_zh.md index 3efefac..979ba02 100755 --- a/README_zh.md +++ b/README_zh.md @@ -22,7 +22,6 @@ utils/native └─ base ├── include # 对各子系统开放的接口头文件 ├── src # 源文件 - ├── ndk_libraries_config # ndk库的配置目录 └── test # 测试代码 ``` diff --git a/bundle.json b/bundle.json index 326c613..af07a31 100644 --- a/bundle.json +++ b/bundle.json @@ -22,7 +22,6 @@ "build": { "sub_component": [ "//utils/native/base:utils", - "//utils/native/ndk_libraries_config:ndk_libs_config", "//utils/native/base:utilsecurec_shared" ], "inner_kits": [ diff --git a/ndk_libraries_config/BUILD.gn b/ndk_libraries_config/BUILD.gn deleted file mode 100644 index 811c35d..0000000 --- a/ndk_libraries_config/BUILD.gn +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright (c) 2021 Huawei Device Co., Ltd. -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -import("//build/ohos.gni") - -ohos_prebuilt_etc("ndk_libs_config") { - if (current_cpu == "arm") { - source = "bit32/public.libraries-z.txt" - } else if (current_cpu == "arm64" || current_cpu == "amd64" || - current_cpu == "x64" || current_cpu == "x86_64") { - source = "bit64/public.libraries-z.txt" - } - subsystem_name = "utils" - relative_install_dir = "" - part_name = "utils_base" -} diff --git a/ndk_libraries_config/bit32/public.libraries-z.txt b/ndk_libraries_config/bit32/public.libraries-z.txt deleted file mode 100644 index 3e2cf56..0000000 --- a/ndk_libraries_config/bit32/public.libraries-z.txt +++ /dev/null @@ -1,13 +0,0 @@ -libhilog_ndk.z.so -libzgraphic.z.so -librawfile.z.so -libsensors.z.so -libeventhandler_native.z.so -libimage_pixelmap.z.so -libmedia_ndk.z.so -libtrans_jni.z.so -libhiappevent_base.z.so -libipc_core.z.so -libhisysevent_jni.z.so -libteec.z.so - diff --git a/ndk_libraries_config/bit64/public.libraries-z.txt b/ndk_libraries_config/bit64/public.libraries-z.txt deleted file mode 100644 index 8438f3f..0000000 --- a/ndk_libraries_config/bit64/public.libraries-z.txt +++ /dev/null @@ -1,13 +0,0 @@ -libhilog_ndk.z.so 64 -libzgraphic.z.so 64 -librawfile.z.so 64 -libsensors.z.so 64 -libeventhandler_native.z.so 64 -libimage_pixelmap.z.so 64 -libmedia_ndk.z.so 64 -libtrans_jni.z.so 64 -libhiappevent_base.z.so 64 -libipc_core.z.so 64 -libhisysevent_jni.z.so 64 -libteec.z.so 64 - -- Gitee