Introduce empty targets to split libjingle_peerconnection_api.

First step of the process to remove the last cycle in the build graph.

Bug: webrtc:8733
Change-Id: I5a0c987ce3d602d1cb30991b73b68a389f13cfba
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/265874
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#37261}
This commit is contained in:
Mirko Bonadei
2022-06-17 14:07:28 +02:00
committed by WebRTC LUCI CQ
parent f87cb81820
commit 01ed32589e

View File

@ -134,6 +134,62 @@ rtc_library("media_stream_interface") {
]
}
# TODO(bugs.webrtc.org/8733): Switch to rtc_library.
rtc_library("candidate") {
# TODO(bugs.webrtc.org/8733): Uncomment.
# sources = [
# "candidate.cc",
# "candidate.h",
# ]
deps = [
"../rtc_base",
"../rtc_base:checks",
"../rtc_base:ip_address",
"../rtc_base:logging",
"../rtc_base:network_constants",
"../rtc_base:socket_address",
"../rtc_base:stringutils",
"../rtc_base/system:rtc_export",
]
absl_deps = [ "//third_party/abseil-cpp/absl/strings" ]
}
rtc_source_set("turn_customizer") {
# TODO(bugs.webrtc.org/8733): Uncomment.
# sources = [ "turn_customizer.h" ]
}
rtc_source_set("ice_transport_interface") {
# TODO(bugs.webrtc.org/8733): Uncomment.
# sources = [ "ice_transport_interface.h" ]
deps = [
":async_dns_resolver",
":packet_socket_factory",
":rtc_error",
":scoped_refptr",
"../rtc_base:refcount",
"rtc_event_log:rtc_event_log",
]
}
# TODO(bugs.webrtc.org/8733): Switch to rtc_library.
rtc_source_set("dtls_transport_interface") {
# TODO(bugs.webrtc.org/8733): Uncomment.
# sources = [
# "dtls_transport_interface.cc",
# "dtls_transport_interface.h",
# ]
deps = [
":ice_transport_interface",
":rtc_error",
":scoped_refptr",
"../rtc_base",
"../rtc_base:refcount",
"../rtc_base/system:rtc_export",
]
absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
}
rtc_library("libjingle_peerconnection_api") {
visibility = [ "*" ]
cflags = []