Skip to content

Commit

Permalink
Add dependencies on absl when they are used but undeclared
Browse files Browse the repository at this point in the history
Bug: b/36882554
Change-Id: I3a1c5f0024abc452bcd74eef2b66d4493f4f974c
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/266760
Reviewed-by: Mirko Bonadei <[email protected]>
Commit-Queue: Mirko Bonadei <[email protected]>
Cr-Commit-Position: refs/heads/main@{#37320}
  • Loading branch information
oprypin authored and WebRTC LUCI CQ committed Jun 24, 2022
1 parent e72e9ef commit 752436f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions call/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ rtc_library("call") {
]
absl_deps = [
"//third_party/abseil-cpp/absl/functional:bind_front",
"//third_party/abseil-cpp/absl/memory",
"//third_party/abseil-cpp/absl/strings",
"//third_party/abseil-cpp/absl/types:optional",
]
Expand Down
1 change: 1 addition & 0 deletions modules/video_coding/codecs/av1/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ rtc_library("libaom_av1_encoder") {
]
absl_deps = [
"//third_party/abseil-cpp/absl/algorithm:container",
"//third_party/abseil-cpp/absl/base:core_headers",
"//third_party/abseil-cpp/absl/strings:strings",
"//third_party/abseil-cpp/absl/types:optional",
]
Expand Down
1 change: 1 addition & 0 deletions net/dcsctp/packet/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ rtc_library("parameter") {
]
absl_deps = [
"//third_party/abseil-cpp/absl/algorithm:container",
"//third_party/abseil-cpp/absl/memory",
"//third_party/abseil-cpp/absl/strings",
"//third_party/abseil-cpp/absl/types:optional",
]
Expand Down
1 change: 1 addition & 0 deletions net/dcsctp/socket/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ rtc_library("dcsctp_socket") {
]
absl_deps = [
"//third_party/abseil-cpp/absl/functional:bind_front",
"//third_party/abseil-cpp/absl/memory",
"//third_party/abseil-cpp/absl/strings",
"//third_party/abseil-cpp/absl/types:optional",
]
Expand Down
1 change: 1 addition & 0 deletions net/dcsctp/timer/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ rtc_library("timer") {
"timer.h",
]
absl_deps = [
"//third_party/abseil-cpp/absl/memory",
"//third_party/abseil-cpp/absl/strings",
"//third_party/abseil-cpp/absl/types:optional",
]
Expand Down
1 change: 1 addition & 0 deletions pc/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -1589,6 +1589,7 @@ rtc_library("rtp_transceiver") {
]
absl_deps = [
"//third_party/abseil-cpp/absl/algorithm:container",
"//third_party/abseil-cpp/absl/memory",
"//third_party/abseil-cpp/absl/strings",
"//third_party/abseil-cpp/absl/types:optional",
]
Expand Down
1 change: 1 addition & 0 deletions video/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ rtc_library("frame_buffer_proxy") {
"../system_wrappers:field_trial",
]
absl_deps = [
"//third_party/abseil-cpp/absl/base:core_headers",
"//third_party/abseil-cpp/absl/functional:bind_front",
"//third_party/abseil-cpp/absl/types:optional",
]
Expand Down

0 comments on commit 752436f

Please sign in to comment.