From da63ed56ea2f66a0142d39d245d8dccabf21778d Mon Sep 17 00:00:00 2001 From: y30045862 Date: Sat, 29 Mar 2025 20:15:53 +0800 Subject: [PATCH] fix system_ty[e & remove useless depend Signed-off-by: yangjingbo10 --- BUILD.gn | 9 +++------ bundle.json | 6 ++---- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 7832b35..69592af 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -56,7 +56,6 @@ ohos_shared_library("liburing") { sources += [ "$code_dir/" + src ] } deps = [ ":liburing_configure" ] - external_deps = [ "c_utils:utils" ] subsystem_name = "thirdparty" part_name = "liburing" innerapi_tags = [ "platformsdk" ] @@ -71,20 +70,18 @@ ohos_executable("liburing_example_io_uring") { configs = [ ":liburing_config" ] deps = [ ":liburing" ] - install_enable = true + install_enable = false subsystem_name = "thirdparty" part_name = "liburing" } ohos_executable("liburing_example_io_uring_close") { - sources = [ - "examples/io_uring-close-test.c", - ] + sources = [ "examples/io_uring-close-test.c" ] include_dirs = [ "test" ] configs = [ ":liburing_config" ] deps = [ ":liburing" ] - install_enable = true + install_enable = false subsystem_name = "thirdparty" part_name = "liburing" } diff --git a/bundle.json b/bundle.json index 55e7a2e..9ad8789 100644 --- a/bundle.json +++ b/bundle.json @@ -18,13 +18,11 @@ "subsystem": "thirdparty", "syscap": [], "features": [], - "adapted_system_type": [ "standard" ], + "adapted_system_type": [ "mini","small","standard" ], "rom": "", "ram": "", "deps": { - "components": [ - "c_utils" - ], + "components": [], "third_party": [] }, "build": { -- Gitee