blob: 263f16dd354da795e71f3a24bdd0eea4cd24864d [file] [log] [blame]
Peter Boström5c389d32015-09-25 13:58:30 +02001# Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
mbonadei9aa3f0a2017-01-24 06:58:22 -08009import("../webrtc.gni")
Peter Boström5c389d32015-09-25 13:58:30 +020010
ossuf515ab82016-12-07 04:52:58 -080011rtc_source_set("call_interfaces") {
12 sources = [
13 "audio_receive_stream.h",
14 "audio_send_stream.cc",
15 "audio_send_stream.h",
16 "audio_state.h",
17 "call.h",
zhihuang38ede132017-06-15 12:52:32 -070018 "callfactoryinterface.h",
brandtr7250b392016-12-19 01:13:46 -080019 "flexfec_receive_stream.h",
solenberg3ebbcb52017-01-31 03:58:40 -080020 "syncable.cc",
21 "syncable.h",
ossuf515ab82016-12-07 04:52:58 -080022 ]
kjellander2f1a5552017-02-27 15:57:45 -080023 deps = [
nissed76b7b22017-06-01 04:02:35 -070024 ":rtp_interfaces",
aleloi440b6d92017-08-22 05:43:23 -070025 ":video_stream_api",
kjellander2f1a5552017-02-27 15:57:45 -080026 "..:webrtc_common",
27 "../api:audio_mixer_api",
hbos8d609f62017-04-10 07:39:05 -070028 "../api:libjingle_peerconnection_api",
kjellander2f1a5552017-02-27 15:57:45 -080029 "../api:transport_api",
30 "../api/audio_codecs:audio_codecs_api",
ehmaldonadof6a861a2017-07-19 10:40:47 -070031 "../rtc_base:rtc_base",
32 "../rtc_base:rtc_base_approved",
kjellander2f1a5552017-02-27 15:57:45 -080033 ]
ossuf515ab82016-12-07 04:52:58 -080034}
35
nissed76b7b22017-06-01 04:02:35 -070036# TODO(nisse): These RTP targets should be moved elsewhere
eladalone2173d92017-07-28 10:05:45 -070037# when interfaces have stabilized. See also TODO for |mock_rtp_interfaces|.
nissed76b7b22017-06-01 04:02:35 -070038rtc_source_set("rtp_interfaces") {
39 sources = [
eladalona52722f2017-06-26 11:23:54 -070040 "rtcp_packet_sink_interface.h",
Stefan Holmer1acbd682017-09-01 15:29:28 +020041 "rtp_config.cc",
42 "rtp_config.h",
nissed76b7b22017-06-01 04:02:35 -070043 "rtp_packet_sink_interface.h",
nisse0f15f922017-06-21 01:05:22 -070044 "rtp_stream_receiver_controller_interface.h",
nissed76b7b22017-06-01 04:02:35 -070045 "rtp_transport_controller_send_interface.h",
46 ]
eladalona52722f2017-06-26 11:23:54 -070047 deps = [
ehmaldonadof6a861a2017-07-19 10:40:47 -070048 "../rtc_base:rtc_base_approved",
eladalona52722f2017-06-26 11:23:54 -070049 ]
nissed76b7b22017-06-01 04:02:35 -070050}
51
52rtc_source_set("rtp_receiver") {
53 sources = [
eladalona52722f2017-06-26 11:23:54 -070054 "rtcp_demuxer.cc",
55 "rtcp_demuxer.h",
nissed76b7b22017-06-01 04:02:35 -070056 "rtp_demuxer.cc",
57 "rtp_demuxer.h",
eladalona52722f2017-06-26 11:23:54 -070058 "rtp_rtcp_demuxer_helper.cc",
59 "rtp_rtcp_demuxer_helper.h",
nisse0f15f922017-06-21 01:05:22 -070060 "rtp_stream_receiver_controller.cc",
61 "rtp_stream_receiver_controller.h",
nissed76b7b22017-06-01 04:02:35 -070062 "rtx_receive_stream.cc",
63 "rtx_receive_stream.h",
Steve Antonb3329172017-08-17 15:23:51 -070064 "ssrc_binding_observer.h",
nissed76b7b22017-06-01 04:02:35 -070065 ]
66 deps = [
67 ":rtp_interfaces",
eladalona52722f2017-06-26 11:23:54 -070068 "..:webrtc_common",
nissed76b7b22017-06-01 04:02:35 -070069 "../modules/rtp_rtcp",
ehmaldonadof6a861a2017-07-19 10:40:47 -070070 "../rtc_base:rtc_base_approved",
nissed76b7b22017-06-01 04:02:35 -070071 ]
72}
73
74rtc_source_set("rtp_sender") {
75 sources = [
76 "rtp_transport_controller_send.cc",
77 "rtp_transport_controller_send.h",
78 ]
79 deps = [
80 ":rtp_interfaces",
sprangdb2a9fc2017-08-09 06:42:32 -070081 "..:webrtc_common",
nissed76b7b22017-06-01 04:02:35 -070082 "../modules/congestion_controller",
ehmaldonadof6a861a2017-07-19 10:40:47 -070083 "../rtc_base:rtc_base_approved",
nissed76b7b22017-06-01 04:02:35 -070084 ]
85}
86
kjellanderb62dbbe2016-09-23 00:38:52 -070087rtc_static_library("call") {
Peter Boström5c389d32015-09-25 13:58:30 +020088 sources = [
mflodman0e7e2592015-11-12 21:02:42 -080089 "bitrate_allocator.cc",
Peter Boström5c389d32015-09-25 13:58:30 +020090 "call.cc",
zhihuang38ede132017-06-15 12:52:32 -070091 "callfactory.cc",
92 "callfactory.h",
brandtr7250b392016-12-19 01:13:46 -080093 "flexfec_receive_stream_impl.cc",
94 "flexfec_receive_stream_impl.h",
Peter Boström5c389d32015-09-25 13:58:30 +020095 ]
96
kjellandere40a7ee2016-10-16 23:56:12 -070097 if (!build_with_chromium && is_clang) {
98 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -070099 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
Peter Boström5c389d32015-09-25 13:58:30 +0200100 }
101
aleloidd310712016-11-17 06:28:59 -0800102 public_deps = [
ossuf515ab82016-12-07 04:52:58 -0800103 ":call_interfaces",
aleloidd310712016-11-17 06:28:59 -0800104 "../api:call_api",
Stefan Holmer1acbd682017-09-01 15:29:28 +0200105 "../api:libjingle_peerconnection_api",
aleloidd310712016-11-17 06:28:59 -0800106 ]
107
Peter Boström5c389d32015-09-25 13:58:30 +0200108 deps = [
ossuf515ab82016-12-07 04:52:58 -0800109 ":call_interfaces",
nissed76b7b22017-06-01 04:02:35 -0700110 ":rtp_interfaces",
111 ":rtp_receiver",
112 ":rtp_sender",
Stefan Holmer1acbd682017-09-01 15:29:28 +0200113 ":video_stream_api",
Peter Boström5c389d32015-09-25 13:58:30 +0200114 "..:webrtc_common",
aleloia8eb7562016-11-28 07:02:13 -0800115 "../api:transport_api",
katrielc14897d02016-06-03 13:14:28 -0700116 "../audio",
kjellander2f1a5552017-02-27 15:57:45 -0800117 "../logging:rtc_event_log_api",
skvladcc91d282016-10-03 18:31:22 -0700118 "../logging:rtc_event_log_impl",
kjellander2f1a5552017-02-27 15:57:45 -0800119 "../modules/bitrate_controller",
Stefan Holmer80e12072016-02-23 13:30:42 +0100120 "../modules/congestion_controller",
kjellander2f1a5552017-02-27 15:57:45 -0800121 "../modules/pacing",
Peter Boström5c389d32015-09-25 13:58:30 +0200122 "../modules/rtp_rtcp",
kjellander2f1a5552017-02-27 15:57:45 -0800123 "../modules/utility",
mbonadei95c8f652017-08-27 23:40:10 -0700124 "../rtc_base:rtc_base_approved",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700125 "../rtc_base:rtc_task_queue",
eladalonf3f5c0e2017-08-18 02:47:08 -0700126 "../rtc_base:sequenced_task_checker",
Peter Boström5c389d32015-09-25 13:58:30 +0200127 "../system_wrappers",
katrielc14897d02016-06-03 13:14:28 -0700128 "../video",
Peter Boström5c389d32015-09-25 13:58:30 +0200129 ]
130}
Peter Boström02083222016-06-14 12:52:54 +0200131
aleloi440b6d92017-08-22 05:43:23 -0700132rtc_source_set("video_stream_api") {
133 sources = [
Stefan Holmer1acbd682017-09-01 15:29:28 +0200134 "video_config.cc",
135 "video_config.h",
aleloi440b6d92017-08-22 05:43:23 -0700136 "video_receive_stream.cc",
137 "video_receive_stream.h",
138 "video_send_stream.cc",
139 "video_send_stream.h",
140 ]
141 deps = [
Stefan Holmer1acbd682017-09-01 15:29:28 +0200142 ":rtp_interfaces",
aleloi440b6d92017-08-22 05:43:23 -0700143 "../:webrtc_common",
Stefan Holmer1acbd682017-09-01 15:29:28 +0200144 "../api:libjingle_peerconnection_api",
aleloi440b6d92017-08-22 05:43:23 -0700145 "../api:transport_api",
146 "../common_video:common_video",
147 "../rtc_base:rtc_base_approved",
148 ]
149}
150
Peter Boström02083222016-06-14 12:52:54 +0200151if (rtc_include_tests) {
ehmaldonado38a21322016-09-02 04:10:34 -0700152 rtc_source_set("call_tests") {
Peter Boström02083222016-06-14 12:52:54 +0200153 testonly = true
kjellandere0629c02017-04-25 04:04:50 -0700154
155 # Skip restricting visibility on mobile platforms since the tests on those
156 # gets additional generated targets which would require many lines here to
157 # cover (which would be confusing to read and hard to maintain).
158 if (!is_android && !is_ios) {
jianjun.zhuc0247402017-07-11 06:20:45 -0700159 visibility = [ "..:video_engine_tests" ]
kjellandere0629c02017-04-25 04:04:50 -0700160 }
Peter Boström02083222016-06-14 12:52:54 +0200161 sources = [
162 "bitrate_allocator_unittest.cc",
163 "bitrate_estimator_tests.cc",
164 "call_unittest.cc",
brandtr76648da2016-10-20 04:54:48 -0700165 "flexfec_receive_stream_unittest.cc",
eladalona52722f2017-06-26 11:23:54 -0700166 "rtcp_demuxer_unittest.cc",
eladalon760a0762017-05-31 09:12:25 -0700167 "rtp_demuxer_unittest.cc",
eladalona52722f2017-06-26 11:23:54 -0700168 "rtp_rtcp_demuxer_helper_unittest.cc",
nisseeed52bf2017-05-19 06:15:19 -0700169 "rtx_receive_stream_unittest.cc",
Peter Boström02083222016-06-14 12:52:54 +0200170 ]
171 deps = [
172 ":call",
eladalone2173d92017-07-28 10:05:45 -0700173 ":mock_rtp_interfaces",
nissed76b7b22017-06-01 04:02:35 -0700174 ":rtp_interfaces",
175 ":rtp_receiver",
176 ":rtp_sender",
eladalona52722f2017-06-26 11:23:54 -0700177 "..:webrtc_common",
ossuc3d4b482017-05-23 06:07:11 -0700178 "../api:mock_audio_mixer",
kjellander2f1a5552017-02-27 15:57:45 -0800179 "../logging:rtc_event_log_api",
aleloidd310712016-11-17 06:28:59 -0800180 "../modules/audio_device:mock_audio_device",
aleloi10111bc2016-11-17 06:48:48 -0800181 "../modules/audio_mixer",
kjellander2f1a5552017-02-27 15:57:45 -0800182 "../modules/bitrate_controller",
zstein7cb69d52017-05-08 11:52:38 -0700183 "../modules/congestion_controller:mock_congestion_controller",
kjellander2f1a5552017-02-27 15:57:45 -0800184 "../modules/pacing",
185 "../modules/rtp_rtcp",
danilchap2d9d21f2017-05-10 08:41:13 -0700186 "../modules/rtp_rtcp:mock_rtp_rtcp",
mbonadei5166e542017-08-03 05:57:11 -0700187 "../modules/utility:mock_process_thread",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700188 "../rtc_base:rtc_base_approved",
kjellander2f1a5552017-02-27 15:57:45 -0800189 "../system_wrappers",
kwiberg37e99fd2017-04-10 05:15:48 -0700190 "../test:audio_codec_mocks",
kjellander2f1a5552017-02-27 15:57:45 -0800191 "../test:direct_transport",
aleloi10111bc2016-11-17 06:48:48 -0800192 "../test:test_common",
kjellander2f1a5552017-02-27 15:57:45 -0800193 "../test:test_support",
194 "../test:video_test_common",
Peter Boström02083222016-06-14 12:52:54 +0200195 "//testing/gmock",
196 "//testing/gtest",
197 ]
kjellandere40a7ee2016-10-16 23:56:12 -0700198 if (!build_with_chromium && is_clang) {
199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -0700200 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
Peter Boström02083222016-06-14 12:52:54 +0200201 }
202 }
ehmaldonado021eef32017-01-05 07:09:50 -0800203
204 rtc_source_set("call_perf_tests") {
205 testonly = true
kjellandere0629c02017-04-25 04:04:50 -0700206
207 # Skip restricting visibility on mobile platforms since the tests on those
208 # gets additional generated targets which would require many lines here to
209 # cover (which would be confusing to read and hard to maintain).
210 if (!is_android && !is_ios) {
jianjun.zhuc0247402017-07-11 06:20:45 -0700211 visibility = [ "..:webrtc_perf_tests" ]
kjellandere0629c02017-04-25 04:04:50 -0700212 }
ehmaldonado021eef32017-01-05 07:09:50 -0800213 sources = [
214 "call_perf_tests.cc",
215 "rampup_tests.cc",
216 "rampup_tests.h",
217 ]
218 deps = [
kjellander2f1a5552017-02-27 15:57:45 -0800219 ":call_interfaces",
Stefan Holmer1acbd682017-09-01 15:29:28 +0200220 ":video_stream_api",
kjellander2f1a5552017-02-27 15:57:45 -0800221 "..:webrtc_common",
ossueb1fde42017-05-02 06:46:30 -0700222 "../api/audio_codecs:builtin_audio_encoder_factory",
kjellander2f1a5552017-02-27 15:57:45 -0800223 "../logging:rtc_event_log_api",
224 "../modules/audio_coding",
225 "../modules/audio_mixer:audio_mixer_impl",
226 "../modules/rtp_rtcp",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700227 "../rtc_base:rtc_base_approved",
kjellander2f1a5552017-02-27 15:57:45 -0800228 "../system_wrappers",
229 "../system_wrappers:metrics_default",
230 "../test:direct_transport",
perkj16ccfdf2017-02-28 14:41:05 -0800231 "../test:fake_audio_device",
jianjun.zhuc0247402017-07-11 06:20:45 -0700232 "../test:field_trial",
233 "../test:test_common",
kjellander2f1a5552017-02-27 15:57:45 -0800234 "../test:test_support",
235 "../test:video_test_common",
236 "../video",
237 "../voice_engine",
ehmaldonado021eef32017-01-05 07:09:50 -0800238 "//testing/gtest",
ehmaldonado021eef32017-01-05 07:09:50 -0800239 ]
240 if (!build_with_chromium && is_clang) {
241 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
242 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
243 }
244 }
eladalone2173d92017-07-28 10:05:45 -0700245
246 # TODO(eladalon): This should be moved, as with the TODO for |rtp_interfaces|.
247 rtc_source_set("mock_rtp_interfaces") {
248 testonly = true
249
250 sources = [
251 "test/mock_rtp_packet_sink_interface.h",
252 ]
253 deps = [
254 ":rtp_interfaces",
255 "../test:test_support",
256 "//testing/gmock",
257 ]
258 }
Peter Boström02083222016-06-14 12:52:54 +0200259}