From cf44adebb25dd4e2165fa1a8ec7a1b971179f31f Mon Sep 17 00:00:00 2001 From: tangfan Date: Thu, 2 Mar 2023 15:45:05 +0800 Subject: [PATCH] fix innerkit Signed-off-by: tangfan --- bundle.json | 12 ++++++++++++ interfaces/inner_kits/BUILD.gn | 2 ++ 2 files changed, 14 insertions(+) diff --git a/bundle.json b/bundle.json index 652bc657..3f096a72 100644 --- a/bundle.json +++ b/bundle.json @@ -57,6 +57,18 @@ "//foundation/distributedhardware/distributed_hardware_fwk/sa_profile:dhardware.cfg", "//foundation/distributedhardware/distributed_hardware_fwk/interfaces/inner_kits:libdhfwk_sdk" ], + "inner_kits": [ + { + "type": "so", + "name": "//foundation/distributedhardware/distributed_hardware_fwk/interfaces/inner_kits:libdhfwk_sdk", + "header": { + "header_files": [ + "distributed_hardware_fwk_kit.h" + ], + "header_base": "//foundation/distributedhardware/distributed_hardware_fwk/interfaces/inner_kits/include" + } + } + ], "test": [ "//foundation/distributedhardware/distributed_hardware_fwk/utils/test/unittest:utils_test", "//foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest:test", diff --git a/interfaces/inner_kits/BUILD.gn b/interfaces/inner_kits/BUILD.gn index 3c78bfa8..e43f941a 100644 --- a/interfaces/inner_kits/BUILD.gn +++ b/interfaces/inner_kits/BUILD.gn @@ -42,6 +42,8 @@ ohos_shared_library("libdhfwk_sdk") { "//foundation/systemabilitymgr/samgr/interfaces/innerkits/samgr_proxy:samgr_proxy", ] + innerapi_tags = ["platformsdk"] + defines = [ "HI_LOG_ENABLE", "DH_LOG_TAG=\"dhfwkkit\"", -- Gitee