From 9a3a88d230971056cf4aef41da8b9531cda67be6 Mon Sep 17 00:00:00 2001 From: "jyc@huawei1" Date: Mon, 1 Apr 2024 03:50:13 -0700 Subject: [PATCH] Issue: https://gitee.com/openharmony/bundlemanager_bundle_framework/issues/I9D4YZ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Comment: 禁止include_dirs通过绝对路径引用其他部件头文件 Signed-off-by: jyc@huawei1 --- interfaces/kits/js/distributedBundle/BUILD.gn | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/interfaces/kits/js/distributedBundle/BUILD.gn b/interfaces/kits/js/distributedBundle/BUILD.gn index f728091..494929a 100644 --- a/interfaces/kits/js/distributedBundle/BUILD.gn +++ b/interfaces/kits/js/distributedBundle/BUILD.gn @@ -15,7 +15,6 @@ import("//build/ohos.gni") import("../../../../dbms.gni") ohos_shared_library("distributedbundlemanager") { - include_dirs = [ "${kits_path}/js/common" ] defines = [ "APP_LOG_TAG = \"DistributedBundleMgrService\"", "LOG_DOMAIN = 0xD001120", @@ -43,7 +42,7 @@ ohos_shared_library("distributedbundlemanager") { "napi:ace_napi", "samgr:samgr_proxy", ] - + public_external_deps = [ "bundle_framework:bundle_napi_common" ] relative_install_dir = "module/bundle" subsystem_name = "bundlemanager" part_name = "distributed_bundle_framework" -- Gitee