From 51164b9a3692ac1a131a1f21f3a426e9fca87de7 Mon Sep 17 00:00:00 2001 From: yangguangzhao Date: Tue, 24 May 2022 16:57:53 +0800 Subject: [PATCH] local IPC should depend on ipc_single, not ipc_core Signed-off-by: yangguangzhao --- bundle.json | 1 + frameworks/accesstoken/BUILD.gn | 2 +- interfaces/innerkits/accesstoken/BUILD.gn | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bundle.json b/bundle.json index c9ae366e5..f96681315 100644 --- a/bundle.json +++ b/bundle.json @@ -24,6 +24,7 @@ "ability_runtime", "hiviewdfx_hilog_native", "ipc_core", + "ipc_single", "aafwk_standard", "system_ability_fwk", "samgr_proxy", diff --git a/frameworks/accesstoken/BUILD.gn b/frameworks/accesstoken/BUILD.gn index 0b7eff140..195b595be 100644 --- a/frameworks/accesstoken/BUILD.gn +++ b/frameworks/accesstoken/BUILD.gn @@ -47,5 +47,5 @@ ohos_shared_library("accesstoken_communication_adapter_cxx") { deps = [ "//utils/native/base:utils" ] - external_deps = [ "ipc:ipc_core" ] + external_deps = [ "ipc:ipc_single" ] } diff --git a/interfaces/innerkits/accesstoken/BUILD.gn b/interfaces/innerkits/accesstoken/BUILD.gn index dba0ef361..2fa470248 100644 --- a/interfaces/innerkits/accesstoken/BUILD.gn +++ b/interfaces/innerkits/accesstoken/BUILD.gn @@ -51,7 +51,7 @@ ohos_shared_library("libaccesstoken_sdk") { external_deps = [ "hiviewdfx_hilog_native:libhilog", - "ipc:ipc_core", + "ipc:ipc_single", "samgr_standard:samgr_proxy", ] -- Gitee