From 748ef076ad1e832d93c205eec188842434a42dab Mon Sep 17 00:00:00 2001 From: lobty Date: Tue, 30 May 2023 09:56:26 +0800 Subject: [PATCH] rectify the sqlite bundle.json specification Signed-off-by: lobty --- BUILD.gn | 6 ++++-- bundle.json | 10 +++++++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index e1303af..a2fb7ea 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -91,7 +91,8 @@ ohos_shared_library("sqlite") { deps = [ "//third_party/openssl:libcrypto_shared" ] public_configs = [ ":sqlite_config" ] configs = [ ":sqlite3_private_config" ] - part_name = "common" + part_name = "sqlite" + subsystem_name = "thirdparty" install_images = [ system_base_dir ] relative_install_dir = "platformsdk" if (is_cross_platform_build) { @@ -254,6 +255,7 @@ if (is_cross_platform_build) { ] public_configs = [ ":sqlite_config" ] configs = [ ":sqlite3_private_config" ] - part_name = "common" + part_name = "sqlite" + subsystem_name = "thirdparty" } } diff --git a/bundle.json b/bundle.json index 0183533..ff3cdbf 100644 --- a/bundle.json +++ b/bundle.json @@ -10,7 +10,7 @@ "dirs": {}, "scripts": {}, "component": { - "name": "thirdparty_sqlite", + "name": "sqlite", "subsystem": "thirdparty", "syscap": [], "features": [], @@ -18,8 +18,12 @@ "rom": "", "ram": "", "deps": { - "components": [], - "third_party": [] + "components": [ + "c_utils" + ], + "third_party": [ + "openssl" + ] }, "build": { "sub_component": [], -- Gitee