| Index: webrtc/call/BUILD.gn
|
| diff --git a/webrtc/call/BUILD.gn b/webrtc/call/BUILD.gn
|
| index d86df1e379a9686c2b8243c84dc49f69cb4e6390..263f16dd354da795e71f3a24bdd0eea4cd24864d 100644
|
| --- a/webrtc/call/BUILD.gn
|
| +++ b/webrtc/call/BUILD.gn
|
| @@ -38,6 +38,8 @@ rtc_source_set("call_interfaces") {
|
| rtc_source_set("rtp_interfaces") {
|
| sources = [
|
| "rtcp_packet_sink_interface.h",
|
| + "rtp_config.cc",
|
| + "rtp_config.h",
|
| "rtp_packet_sink_interface.h",
|
| "rtp_stream_receiver_controller_interface.h",
|
| "rtp_transport_controller_send_interface.h",
|
| @@ -100,6 +102,7 @@ rtc_static_library("call") {
|
| public_deps = [
|
| ":call_interfaces",
|
| "../api:call_api",
|
| + "../api:libjingle_peerconnection_api",
|
| ]
|
|
|
| deps = [
|
| @@ -107,6 +110,7 @@ rtc_static_library("call") {
|
| ":rtp_interfaces",
|
| ":rtp_receiver",
|
| ":rtp_sender",
|
| + ":video_stream_api",
|
| "..:webrtc_common",
|
| "../api:transport_api",
|
| "../audio",
|
| @@ -127,13 +131,17 @@ rtc_static_library("call") {
|
|
|
| rtc_source_set("video_stream_api") {
|
| sources = [
|
| + "video_config.cc",
|
| + "video_config.h",
|
| "video_receive_stream.cc",
|
| "video_receive_stream.h",
|
| "video_send_stream.cc",
|
| "video_send_stream.h",
|
| ]
|
| deps = [
|
| + ":rtp_interfaces",
|
| "../:webrtc_common",
|
| + "../api:libjingle_peerconnection_api",
|
| "../api:transport_api",
|
| "../common_video:common_video",
|
| "../rtc_base:rtc_base_approved",
|
| @@ -209,6 +217,7 @@ if (rtc_include_tests) {
|
| ]
|
| deps = [
|
| ":call_interfaces",
|
| + ":video_stream_api",
|
| "..:webrtc_common",
|
| "../api/audio_codecs:builtin_audio_encoder_factory",
|
| "../logging:rtc_event_log_api",
|
|
|