From 4664246156e6e94318f188deca9f462fd5097b9f Mon Sep 17 00:00:00 2001 From: shichong Date: Fri, 24 May 2024 20:27:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E5=AE=89=E5=85=A8=E4=BE=9D?= =?UTF-8?q?=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: shichong --- bundle.json | 3 ++- services/protocol/rtcp/BUILD.gn | 5 ++++- services/protocol/rtsp/BUILD.gn | 5 ++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/bundle.json b/bundle.json index 85e3ac1..6113ef9 100644 --- a/bundle.json +++ b/bundle.json @@ -51,7 +51,8 @@ "access_token", "drivers_interface_camera", "eventhandler", - "window_manager" + "window_manager", + "bounds_checking_function" ], "third_party": [ "cJSON", diff --git a/services/protocol/rtcp/BUILD.gn b/services/protocol/rtcp/BUILD.gn index ebee7f6..e87a0eb 100644 --- a/services/protocol/rtcp/BUILD.gn +++ b/services/protocol/rtcp/BUILD.gn @@ -31,7 +31,10 @@ ohos_source_set("sharing_rtcp_srcs") { "src/rtcp_context.cpp", ] - external_deps = [ "hilog:libhilog" ] + external_deps = [ + "bounds_checking_function:libsec_shared", + "hilog:libhilog", + ] subsystem_name = "castplus" part_name = "sharing_framework" diff --git a/services/protocol/rtsp/BUILD.gn b/services/protocol/rtsp/BUILD.gn index c830b57..15876ea 100644 --- a/services/protocol/rtsp/BUILD.gn +++ b/services/protocol/rtsp/BUILD.gn @@ -41,6 +41,9 @@ ohos_static_library("sharing_rtsp") { "$SHARING_ROOT_DIR/services/utils:sharing_utils", ] - external_deps = [ "hilog:libhilog" ] + external_deps = [ + "bounds_checking_function:libsec_static", + "hilog:libhilog", + ] part_name = "sharing_framework" } -- Gitee