From fe6ee39416b16071c623536c3c56492e98b3363a Mon Sep 17 00:00:00 2001 From: daiyujia Date: Sat, 13 Sep 2025 10:39:36 +0800 Subject: [PATCH] =?UTF-8?q?IssueNo:#ICXTCP=20Description:[6.0]=E5=85=83?= =?UTF-8?q?=E8=83=BD=E5=8A=9Bapp=5Fcontext=E4=BE=9D=E8=B5=96=E6=95=B4?= =?UTF-8?q?=E6=94=B9=E9=80=82=E9=85=8D=20Sig:bundleManager=20Feature=20or?= =?UTF-8?q?=20Bugfix:Bugfix=20Binary=20Source:No?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: daiyujia Change-Id: I5be5d45f5e827753b93750df1d747ecae03e7163 --- BUILD.gn | 1 + bundle.json | 7 +++++++ interfaces/inner_api/appexecfwk_core/BUILD.gn | 18 ++++++++++++++++++ 3 files changed, 26 insertions(+) diff --git a/BUILD.gn b/BUILD.gn index 2ed5652f62..f336b22a2d 100755 --- a/BUILD.gn +++ b/BUILD.gn @@ -19,6 +19,7 @@ group("bms_target") { "common:common_target", "interfaces/inner_api/appexecfwk_base:appexecfwk_base", "interfaces/inner_api/appexecfwk_core:appexecfwk_core", + "interfaces/inner_api/appexecfwk_core:appexecfwk_core_headers", "interfaces/inner_api/appexecfwk_core:bundlemgr_mini", "interfaces/inner_api/bundlemgr_extension:bundlemgr_extension", "interfaces/kits/cj:cj_bundle_manager_ffi", diff --git a/bundle.json b/bundle.json index ab0d64e3d2..8ffd5bb7ca 100644 --- a/bundle.json +++ b/bundle.json @@ -148,6 +148,13 @@ }, "name": "//foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core:bundlemgr_mini" }, + { + "header": { + "header_base": "//foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include", + "header_files": [] + }, + "name": "//foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core:appexecfwk_core_headers" + }, { "header": { "header_base": "//foundation/bundlemanager/bundle_framework/interfaces/inner_api/bundlemgr_extension/include", diff --git a/interfaces/inner_api/appexecfwk_core/BUILD.gn b/interfaces/inner_api/appexecfwk_core/BUILD.gn index 5fbea348a0..a1b68f4a20 100644 --- a/interfaces/inner_api/appexecfwk_core/BUILD.gn +++ b/interfaces/inner_api/appexecfwk_core/BUILD.gn @@ -63,6 +63,24 @@ config("appexecfwk_core_config") { ] } +ohos_shared_headers("appexecfwk_core_headers") { + include_dirs = [ + "include", + "include/app_control", + "include/bundle_resource", + "include/bundlemgr", + "include/default_app", + "include/extend_resource", + "include/overlay", + "include/quick_fix", + "include/verify", + "include/bundlemgr_ext", + "${target_gen_dir}", + ] + subsystem_name = "bundlemanager" + part_name = "bundle_framework" +} + ohos_shared_library("appexecfwk_core") { branch_protector_ret = "pac_ret" -- Gitee