From 468d6721b88b68979b823d88f3321f9a5121e8e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E9=9C=86=E5=A8=81?= <2158863620@qq.com> Date: Fri, 1 Mar 2024 08:10:46 +0000 Subject: [PATCH 1/7] =?UTF-8?q?sqlite=E9=83=A8=E4=BB=B6=E7=8B=AC=E7=AB=8B?= =?UTF-8?q?=E7=BC=96=E8=AF=91=E6=95=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 谢霆威 <2158863620@qq.com> --- bundle.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/bundle.json b/bundle.json index 1af894b..0131ed3 100644 --- a/bundle.json +++ b/bundle.json @@ -28,7 +28,19 @@ }, "build": { "sub_component": [], - "inner_kits": [], + "inner_kits": [ + { + "name": "//third_party/sqlite:sqlite", + "header": { + "header_files": [ + "sqlite3.h", + "sqlite3ext.h", + "sqlite3sym.h" + ], + "header_base": "//third_party/sqlite/include" + } + } + ], "test": [] } } -- Gitee From 56d514dec518addbbecd542cdd0c46b65a7fdd72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E9=9C=86=E5=A8=81?= <2158863620@qq.com> Date: Tue, 5 Mar 2024 02:11:55 +0000 Subject: [PATCH 2/7] update bundle.json. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 谢霆威 <2158863620@qq.com> --- bundle.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bundle.json b/bundle.json index 0131ed3..c7f5bf6 100644 --- a/bundle.json +++ b/bundle.json @@ -32,12 +32,12 @@ { "name": "//third_party/sqlite:sqlite", "header": { - "header_files": [ - "sqlite3.h", - "sqlite3ext.h", - "sqlite3sym.h" - ], - "header_base": "//third_party/sqlite/include" + "header_files": [ + "sqlite3.h", + "sqlite3ext.h", + "sqlite3sym.h" + ], + "header_base": "//third_party/sqlite/include" } } ], -- Gitee From 33d5b84d76c6b0cb9dd09efad95cb3d4b2693c44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E9=9C=86=E5=A8=81?= Date: Wed, 6 Mar 2024 02:19:03 +0000 Subject: [PATCH 3/7] =?UTF-8?q?=E5=8F=96=E6=B6=88=E5=AF=B9=E5=A4=96?= =?UTF-8?q?=E6=9A=B4=E9=9C=B2=E5=8E=9F=E5=A7=8B=E5=A4=B4=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 谢霆威 --- bundle.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bundle.json b/bundle.json index c7f5bf6..d126112 100644 --- a/bundle.json +++ b/bundle.json @@ -32,11 +32,7 @@ { "name": "//third_party/sqlite:sqlite", "header": { - "header_files": [ - "sqlite3.h", - "sqlite3ext.h", - "sqlite3sym.h" - ], + "header_files": [], "header_base": "//third_party/sqlite/include" } } -- Gitee From bb05e39f8521f8e4adf88544c7a511ec61d25868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E9=9C=86=E5=A8=81?= Date: Wed, 6 Mar 2024 03:00:09 +0000 Subject: [PATCH 4/7] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BC=80=E6=94=BE?= =?UTF-8?q?=E8=8C=83=E5=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 谢霆威 --- BUILD.gn | 1 + 1 file changed, 1 insertion(+) diff --git a/BUILD.gn b/BUILD.gn index 3e2b51a..e7462ba 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -48,6 +48,7 @@ ohos_shared_library("sqlite") { visibility += [ "//foundation/bundlemanager/ecological_rule_mgr/*" ] visibility += [ "//vendor/*" ] visibility += [ "//base/accesscontrol/sandbox_manager/*" ] + visibility += [ "//out/*" ] sources = [ "src/sqlite3.c" ] -- Gitee From 55a4dbfc2c8f66b45e3c06c7615424dbedd2eb53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E9=9C=86=E5=A8=81?= Date: Wed, 6 Mar 2024 06:43:32 +0000 Subject: [PATCH 5/7] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E5=9B=9E=E9=80=80?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E4=BA=A7=E7=94=9F=E7=9A=84=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 谢霆威 --- bundle.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bundle.json b/bundle.json index d126112..8f30cd0 100644 --- a/bundle.json +++ b/bundle.json @@ -32,7 +32,11 @@ { "name": "//third_party/sqlite:sqlite", "header": { - "header_files": [], + "header_files": [ + "sqlite3.h", + "sqlite3ext.h", + "sqlite3sym.h" + ], "header_base": "//third_party/sqlite/include" } } -- Gitee From 7166473cb4db7bdbd526733d2983c5f8b2c4873e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E9=9C=86=E5=A8=81?= Date: Wed, 6 Mar 2024 08:37:38 +0000 Subject: [PATCH 6/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9visibility?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 谢霆威 --- BUILD.gn | 2 +- bundle.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index e7462ba..8f77bb5 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -48,7 +48,7 @@ ohos_shared_library("sqlite") { visibility += [ "//foundation/bundlemanager/ecological_rule_mgr/*" ] visibility += [ "//vendor/*" ] visibility += [ "//base/accesscontrol/sandbox_manager/*" ] - visibility += [ "//out/*" ] + visibility += [ "//out/rk3568/build_configs/thirdparty/sqlite/*" ] sources = [ "src/sqlite3.c" ] diff --git a/bundle.json b/bundle.json index 3b6dbfd..8f30cd0 100644 --- a/bundle.json +++ b/bundle.json @@ -28,7 +28,7 @@ }, "build": { "sub_component": [], - "inner_kits": [ + "inner_kits": [ { "name": "//third_party/sqlite:sqlite", "header": { -- Gitee From 987f5f81fbe83b3eea325babf576719937d6973c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E9=9C=86=E5=A8=81?= Date: Wed, 6 Mar 2024 08:38:48 +0000 Subject: [PATCH 7/7] =?UTF-8?q?=E7=BC=A9=E5=B0=8F=E5=A4=B4=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=BC=80=E6=94=BE=E8=8C=83=E5=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 谢霆威 --- bundle.json | 1 - 1 file changed, 1 deletion(-) diff --git a/bundle.json b/bundle.json index 8f30cd0..deab626 100644 --- a/bundle.json +++ b/bundle.json @@ -33,7 +33,6 @@ "name": "//third_party/sqlite:sqlite", "header": { "header_files": [ - "sqlite3.h", "sqlite3ext.h", "sqlite3sym.h" ], -- Gitee