Add missing dependencies.

No-Try: True
Bug: b/251890128
Change-Id: I496a09f79a772957815c7e580fb435f8d313438f
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/278680
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Björn Terelius <terelius@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#38341}
This commit is contained in:
Mirko Bonadei 2022-10-10 15:39:13 +00:00 committed by WebRTC LUCI CQ
parent 12634a28eb
commit 8d92c04a6d
2 changed files with 5 additions and 1 deletions

View File

@ -463,6 +463,7 @@ if (rtc_enable_protobuf) {
"../rtc_base/system:file_wrapper", "../rtc_base/system:file_wrapper",
] ]
absl_deps = [ absl_deps = [
"//third_party/abseil-cpp/absl/base:core_headers",
"//third_party/abseil-cpp/absl/memory", "//third_party/abseil-cpp/absl/memory",
"//third_party/abseil-cpp/absl/strings", "//third_party/abseil-cpp/absl/strings",
"//third_party/abseil-cpp/absl/types:optional", "//third_party/abseil-cpp/absl/types:optional",

View File

@ -145,7 +145,10 @@ rtc_library("h264_packet_buffer") {
"../rtp_rtcp:rtp_rtcp_format", "../rtp_rtcp:rtp_rtcp_format",
"../rtp_rtcp:rtp_video_header", "../rtp_rtcp:rtp_video_header",
] ]
absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ] absl_deps = [
"//third_party/abseil-cpp/absl/base:core_headers",
"//third_party/abseil-cpp/absl/types:optional",
]
} }
rtc_library("frame_helpers") { rtc_library("frame_helpers") {