From 99badc293ecdccb30d920ca1c54b8d0ec7ac84cf Mon Sep 17 00:00:00 2001 From: jml Date: Mon, 25 Aug 2025 01:34:47 +0000 Subject: [PATCH] add ipc deps Signed-off-by: jml --- frameworks/native/BUILD.gn | 3 ++- test/BUILD.gn | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/frameworks/native/BUILD.gn b/frameworks/native/BUILD.gn index 456fc94..559713b 100644 --- a/frameworks/native/BUILD.gn +++ b/frameworks/native/BUILD.gn @@ -38,7 +38,8 @@ ohos_shared_library("qos_ndk") { deps = [ "../../qos:qos" ] external_deps = [ - "hilog:libhilog" + "hilog:libhilog", + "ipc:ipc_single", ] output_name = "qos" diff --git a/test/BUILD.gn b/test/BUILD.gn index 979d59f..c439ca7 100644 --- a/test/BUILD.gn +++ b/test/BUILD.gn @@ -100,6 +100,7 @@ ohos_unittest("func_loader_test") { "frame_aware_sched:rtg_interface", "hilog:libhilog", "init:libbegetutil", + "ipc:ipc_single", "safwk:system_ability_fwk", "samgr:samgr_proxy", ] @@ -129,6 +130,7 @@ ohos_unittest("concurrent_task_controller_interface_test") { "frame_aware_sched:rtg_interface", "hilog:libhilog", "init:libbegetutil", + "ipc:ipc_single", "safwk:system_ability_fwk", "samgr:samgr_proxy", ] @@ -155,6 +157,7 @@ ohos_unittest("concurrent_task_service_ability_test") { "c_utils:utils", "frame_aware_sched:rtg_interface", "hilog:libhilog", + "ipc:ipc_single", "safwk:system_ability_fwk", "samgr:samgr_proxy", ] @@ -234,6 +237,7 @@ ohos_unittest("concurrent_task_service_test") { "c_utils:utils", "frame_aware_sched:rtg_interface", "hilog:libhilog", + "ipc:ipc_single", "safwk:system_ability_fwk", "samgr:samgr_proxy", ] -- Gitee