Add new empty build targets rtp_rtcp_legacy and video_legacy.

Initial step to be able to land
https://webrtc-review.googlesource.com/c/src/+/196904

Bug: webrtc:11581
Change-Id: Iaab52e98f4562f701cf02e3f641b7b02a11b799e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/197944
Reviewed-by: Erik Språng <sprang@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#32971}
This commit is contained in:
Niels Möller
2020-12-16 15:57:49 +01:00
committed by Commit Bot
parent b24e720907
commit d73426d660
2 changed files with 26 additions and 0 deletions

View File

@ -319,6 +319,11 @@ rtc_library("rtp_rtcp") {
] ]
} }
rtc_source_set("rtp_rtcp_legacy") {
# TODO(bugs.webrtc.org/11581): The files "source/rtp_rtcp_impl.cc"
# and "source/rtp_rtcp_impl.h" should be moved to this target.
}
rtc_library("rtcp_transceiver") { rtc_library("rtcp_transceiver") {
visibility = [ "*" ] visibility = [ "*" ]
public = [ public = [
@ -523,6 +528,7 @@ if (rtc_include_tests) {
":rtcp_transceiver", ":rtcp_transceiver",
":rtp_rtcp", ":rtp_rtcp",
":rtp_rtcp_format", ":rtp_rtcp_format",
":rtp_rtcp_legacy",
"../../api:array_view", "../../api:array_view",
"../../api:libjingle_peerconnection_api", "../../api:libjingle_peerconnection_api",
"../../api:mock_frame_encryptor", "../../api:mock_frame_encryptor",

View File

@ -154,6 +154,25 @@ rtc_library("video") {
} }
} }
rtc_source_set("video_legacy") {
# TODO(bugs.webrtc.org/11581): These files should be moved to this target:
#
# "call_stats.cc",
# "call_stats.h",
# "receive_statistics_proxy.cc",
# "receive_statistics_proxy.h",
# "rtp_streams_synchronizer.cc",
# "rtp_streams_synchronizer.h",
# "rtp_video_stream_receiver.cc",
# "rtp_video_stream_receiver.h",
# "video_quality_observer.cc",
# "video_quality_observer.h",
# "video_receive_stream.cc",
# "video_receive_stream.h",
# "video_stream_decoder.cc",
# "video_stream_decoder.h",
}
rtc_library("video_stream_decoder_impl") { rtc_library("video_stream_decoder_impl") {
visibility = [ "*" ] visibility = [ "*" ]
@ -571,6 +590,7 @@ if (rtc_include_tests) {
] ]
deps = [ deps = [
":video", ":video",
":video_legacy",
":video_mocks", ":video_mocks",
":video_stream_decoder_impl", ":video_stream_decoder_impl",
":video_stream_encoder_impl", ":video_stream_encoder_impl",