diff --git a/frameworks/concurrent_task_client/BUILD.gn b/frameworks/concurrent_task_client/BUILD.gn index a3352340547bf5afd10ef9d7b5f530d6dae2d8dd..ca69602232e97b0f8bbcb290d2c11d7577bb9a45 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",