From e9d3624904d29c952a4545d8290362207f807341 Mon Sep 17 00:00:00 2001 From: edwardcaoyue Date: Thu, 27 Jul 2023 16:20:22 +0800 Subject: [PATCH] adjust BUILD.gn Signed-off-by: edwardcaoyue Change-Id: I592a1f87bf05774edb6c45f585f0b558ede97745 --- frameworks/concurrent_task_client/BUILD.gn | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frameworks/concurrent_task_client/BUILD.gn b/frameworks/concurrent_task_client/BUILD.gn index a335234..ca69602 100644 --- a/frameworks/concurrent_task_client/BUILD.gn +++ b/frameworks/concurrent_task_client/BUILD.gn @@ -17,20 +17,20 @@ import("//build/test.gni") config("client_private_config") { cflags_cc = [ "-fexceptions" ] include_dirs = [ - "./include", "../../include", "../../services/include", - "../../interfaces/inner_api/", "//commonlibrary/c_utils/base/include", "//utils/system/safwk/native/include", - "//third_party/jsoncpp/include", ] } config("client_public_config") { visibility = [ ":*" ] cflags = [ "-fstack-protector-strong" ] - include_dirs = [ "include" ] + include_dirs = [ + "include", + "../../interfaces/inner_api/", + ] } ohos_shared_library("concurrent_task_client") { @@ -43,7 +43,7 @@ ohos_shared_library("concurrent_task_client") { "src/concurrent_task_service_proxy.cpp", ] - deps = [ "//third_party/jsoncpp:jsoncpp" ] + public_deps = [ "//third_party/jsoncpp:jsoncpp" ] external_deps = [ "c_utils:utils", -- Gitee