blob: ee384c846203c98cf6832a98f84ba0d05deb869c [file] [log] [blame]
hjonaa32c3e2015-12-14 03:58:111# 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 14:58:229import("../webrtc.gni")
Sami Kalliomaki9c0c75b2016-06-29 12:55:0010if (is_android) {
11 import("//build/config/android/config.gni")
12 import("//build/config/android/rules.gni")
13}
kjellanderc76dc952016-06-03 10:09:3214
15group("api") {
Per Kjellandera7f2d842018-01-10 15:54:5316 visibility = [ "*" ]
Dan Minor9c686132018-01-15 15:20:0017 deps = []
18
19 if (!build_with_mozilla) {
20 deps += [ ":libjingle_peerconnection_api" ]
21 }
kjellanderc76dc952016-06-03 10:09:3222}
23
ehmaldonado38a21322016-09-02 11:10:3424rtc_source_set("call_api") {
Per Kjellandera7f2d842018-01-10 15:54:5325 visibility = [ "*" ]
kjellandera69d9732016-08-31 14:33:0526 sources = [
kjellandera69d9732016-08-31 14:33:0527 "call/audio_sink.h",
kjellandera69d9732016-08-31 14:33:0528 ]
kjellandera69d9732016-08-31 14:33:0529}
30
Niels Möller8366e172018-02-14 11:20:1331rtc_source_set("callfactory_api") {
32 visibility = [ "*" ]
33 sources = [
Steve Anton10542f22019-01-11 17:11:0034 "call/call_factory_interface.h",
Niels Möller8366e172018-02-14 11:20:1335 ]
36}
37
Danil Chapovalov5bf58062019-06-18 14:43:3738if (!build_with_chromium) {
39 rtc_static_library("create_peerconnection_factory") {
40 visibility = [ "*" ]
Danil Chapovalov41300af2019-07-10 10:44:4341 allow_poison = [ "default_task_queue" ]
Danil Chapovalov5bf58062019-06-18 14:43:3742 sources = [
43 "create_peerconnection_factory.cc",
44 "create_peerconnection_factory.h",
45 ]
46 deps = [
47 ":callfactory_api",
48 ":libjingle_peerconnection_api",
49 ":scoped_refptr",
50 "../api/rtc_event_log:rtc_event_log_factory",
51 "../media:rtc_audio_video",
52 "../media:rtc_media_base",
53 "../modules/audio_device:audio_device_api",
54 "../modules/audio_processing:api",
55 "../pc:peerconnection",
56 "../rtc_base",
57 "../rtc_base:rtc_base_approved",
58 "audio:audio_mixer_api",
59 "audio_codecs:audio_codecs_api",
60 "task_queue:default_task_queue_factory",
61 "video_codecs:video_codecs_api",
62 "//third_party/abseil-cpp/absl/memory",
63 ]
64 }
Mirko Bonadei3cf8f3e2018-11-19 08:17:5165}
66
Niels Möllerb8389522019-03-19 13:27:0367rtc_source_set("rtp_headers") {
68 visibility = [ "*" ]
Niels Mölleref1052a2019-03-20 07:40:2369 sources = [
70 "rtp_headers.cc",
71 "rtp_headers.h",
72 ]
73 deps = [
74 ":array_view",
75 "..:webrtc_common",
Sebastian Jansson3d61ab12019-06-14 11:35:5176 "units:timestamp",
Chen Xing5d24b162019-06-10 10:59:3877 "video:video_rtp_headers",
Niels Mölleref1052a2019-03-20 07:40:2378 "//third_party/abseil-cpp/absl/types:optional",
79 ]
Niels Möllerb8389522019-03-19 13:27:0380}
81
Chen Xingd2a66862019-06-03 12:53:4282rtc_source_set("rtp_packet_info") {
83 visibility = [ "*" ]
84 sources = [
85 "rtp_packet_info.cc",
86 "rtp_packet_info.h",
87 "rtp_packet_infos.h",
88 ]
89 deps = [
90 ":array_view",
91 ":refcountedbase",
92 ":rtp_headers",
93 ":scoped_refptr",
94 "..:webrtc_common",
Chen Xinge08648d2019-08-05 14:29:1395 "../rtc_base:deprecation",
Chen Xingd2a66862019-06-03 12:53:4296 "../rtc_base:rtc_base_approved",
97 "//third_party/abseil-cpp/absl/types:optional",
98 ]
99}
100
ossu7bb87ee2017-01-23 12:56:25101rtc_static_library("libjingle_peerconnection_api") {
Per Kjellandera7f2d842018-01-10 15:54:53102 visibility = [ "*" ]
kjellanderc76dc952016-06-03 10:09:32103 cflags = []
104 sources = [
Steve Anton10542f22019-01-11 17:11:00105 "async_resolver_factory.h",
Patrik Höglundb6b29e02018-06-21 14:58:01106 "bitrate_constraints.h",
Steve Anton36b28db2017-10-26 18:27:17107 "candidate.cc",
Patrik Höglunde2d6a062017-10-05 12:53:33108 "candidate.h",
Anton Sukhanovc136b062019-05-14 21:53:42109 "congestion_control_interface.h",
Steve Anton10542f22019-01-11 17:11:00110 "crypto/crypto_options.cc",
111 "crypto/crypto_options.h",
112 "crypto/frame_decryptor_interface.h",
113 "crypto/frame_encryptor_interface.h",
114 "crypto_params.h",
115 "data_channel_interface.cc",
116 "data_channel_interface.h",
Bjorn A Mellem05497f22019-08-01 17:48:20117 "data_channel_transport_interface.h",
Anton Sukhanovc136b062019-05-14 21:53:42118 "datagram_transport_interface.h",
Harald Alvestrand7061e512019-04-10 15:20:42119 "dtls_transport_interface.cc",
Steve Anton10542f22019-01-11 17:11:00120 "dtls_transport_interface.h",
121 "dtmf_sender_interface.h",
Harald Alvestrand98462622019-01-30 13:57:03122 "ice_transport_interface.h",
Steve Anton845bb732017-12-05 20:50:26123 "jsep.cc",
kjellanderc76dc952016-06-03 10:09:32124 "jsep.h",
Steve Anton10542f22019-01-11 17:11:00125 "jsep_ice_candidate.cc",
126 "jsep_ice_candidate.h",
127 "jsep_session_description.h",
Steve Anton10542f22019-01-11 17:11:00128 "media_stream_interface.cc",
129 "media_stream_interface.h",
130 "media_stream_proxy.h",
131 "media_stream_track_proxy.h",
Anton Sukhanov4f08faa2019-05-21 18:12:57132 "media_transport_config.h",
Anton Sukhanovf60bd4b2018-09-05 17:41:46133 "media_transport_interface.h",
kjellanderc76dc952016-06-03 10:09:32134 "notifier.h",
Patrik Höglund662e31f2019-09-05 12:35:04135 "packet_socket_factory.h",
Steve Anton10542f22019-01-11 17:11:00136 "peer_connection_factory_proxy.h",
137 "peer_connection_interface.cc",
138 "peer_connection_interface.h",
139 "peer_connection_proxy.h",
Steve Antonf2737d22017-10-31 23:27:34140 "proxy.cc",
kjellanderc76dc952016-06-03 10:09:32141 "proxy.h",
Steve Anton10542f22019-01-11 17:11:00142 "rtp_receiver_interface.cc",
143 "rtp_receiver_interface.h",
144 "rtp_sender_interface.cc",
145 "rtp_sender_interface.h",
146 "rtp_transceiver_interface.cc",
147 "rtp_transceiver_interface.h",
Harald Alvestrandc85328f2019-02-28 06:51:00148 "sctp_transport_interface.cc",
149 "sctp_transport_interface.h",
Steve Anton10542f22019-01-11 17:11:00150 "set_remote_description_observer_interface.h",
151 "stats_types.cc",
152 "stats_types.h",
153 "turn_customizer.h",
154 "uma_metrics.h",
155 "video_track_source_proxy.h",
kjellanderc76dc952016-06-03 10:09:32156 ]
kjellanderc76dc952016-06-03 10:09:32157 deps = [
Patrik Höglund3e113432017-12-15 13:40:10158 ":array_view",
Niels Möllera6fe2612018-01-19 10:28:54159 ":audio_options_api",
Niels Möller8366e172018-02-14 11:20:13160 ":callfactory_api",
Ying Wang0dd1b0a2018-02-20 11:50:27161 ":fec_controller_api",
Niels Möller8366e172018-02-14 11:20:13162 ":libjingle_logging_api",
Ying Wang0810a7c2019-04-10 11:48:24163 ":network_state_predictor_api",
Patrik Höglund662e31f2019-09-05 12:35:04164 ":packet_socket_factory",
Mirko Bonadeifcfeefe2019-09-10 08:51:23165 ":rtc_error",
hbos74e1a4f2016-09-16 06:33:01166 ":rtc_stats_api",
Chen Xingd2a66862019-06-03 12:53:42167 ":rtp_packet_info",
Niels Möller184b4af2019-08-23 11:33:50168 ":rtp_parameters",
Mirko Bonadeid9708072019-01-25 19:26:48169 ":scoped_refptr",
Gustaf Ullberg2ae140a2018-02-16 12:43:49170 "audio:audio_mixer_api",
Patrik Höglundb5b5bce2017-11-13 09:19:58171 "audio_codecs:audio_codecs_api",
Danil Chapovalovb32f2c72019-05-22 11:39:25172 "rtc_event_log",
Danil Chapovalov9435c6102019-04-01 08:33:16173 "task_queue",
Niels Möller0c4f7be2018-05-07 12:01:37174 "transport:bitrate_settings",
Niels Möller65f17ca2019-09-12 11:59:36175 "transport:datagram_transport_interface",
Sebastian Janssondfce03a2018-05-18 16:05:10176 "transport:network_control",
Niels Möllerec3b9ff2019-02-07 23:28:39177 "transport/media:audio_interfaces",
Niels Möller65f17ca2019-09-12 11:59:36178 "transport/media:media_transport_interface",
Niels Möller7e0e44f2019-02-12 13:04:11179 "transport/media:video_interfaces",
Niels Möllera8370302019-09-02 13:16:49180 "transport/rtp:rtp_source",
Piotr (Peter) Slatala48c54932019-01-28 14:50:38181 "units:data_rate",
Bjorn A Mellem57dc02a2019-05-30 16:15:37182 "units:timestamp",
Niels Möller3a742392018-10-08 09:13:58183 "video:encoded_image",
Niels Möllerc6ce9c52018-05-11 09:15:30184 "video:video_frame",
Chen Xing5d24b162019-06-10 10:59:38185 "video:video_rtp_headers",
Steve Anton2c9ebef2019-01-29 01:27:58186 "//third_party/abseil-cpp/absl/algorithm:container",
Steve Anton8e967df2019-07-31 01:07:40187 "//third_party/abseil-cpp/absl/memory",
Steve Anton6fe1fba2018-12-11 18:15:23188 "//third_party/abseil-cpp/absl/strings",
Danil Chapovalov0bc58cf2018-06-21 11:32:56189 "//third_party/abseil-cpp/absl/types:optional",
Patrik Höglundb5b5bce2017-11-13 09:19:58190
191 # Basically, don't add stuff here. You might break sensitive downstream
192 # targets like pnacl. API should not depend on anything outside of this
193 # file, really. All these should arguably go away in time.
kjellander8a116632017-04-21 12:17:08194 "..:webrtc_common",
Niels Möller6daa2782018-01-23 09:37:42195 "../media:rtc_media_config",
Patrik Höglundb874a352017-11-27 13:32:41196 "../modules/audio_processing:audio_processing_statistics",
Artem Titov94b57c02019-03-21 12:35:10197 "../rtc_base",
Patrik Höglund3e113432017-12-15 13:40:10198 "../rtc_base:checks",
199 "../rtc_base:deprecation",
ehmaldonadof6a861a2017-07-19 17:40:47200 "../rtc_base:rtc_base_approved",
Mirko Bonadei3b56ee72018-10-15 15:15:12201 "../rtc_base/system:rtc_export",
kjellanderc76dc952016-06-03 10:09:32202 ]
ossu7bb87ee2017-01-23 12:56:25203}
kjellanderc76dc952016-06-03 10:09:32204
Mirko Bonadei9bc98852019-09-10 08:05:26205rtc_source_set("rtc_error") {
206 visibility = [ "*" ]
Mirko Bonadeifcfeefe2019-09-10 08:51:23207 sources = [
208 "rtc_error.cc",
209 "rtc_error.h",
210 ]
211 deps = [
212 "../rtc_base:checks",
213 "../rtc_base:logging",
214 "../rtc_base:macromagic",
215 "../rtc_base/system:rtc_export",
216 "//third_party/abseil-cpp/absl/strings",
217 ]
Mirko Bonadei9bc98852019-09-10 08:05:26218}
219
Patrik Höglund662e31f2019-09-05 12:35:04220rtc_source_set("packet_socket_factory") {
221 visibility = [ "*" ]
222 sources = [
223 # TODO(bugs.webrtc.org/7447: remove .h files from the api target once
224 # downstream is updated to use the new target.
225 "async_resolver_factory.h",
226 "packet_socket_factory.h",
227 ]
228 deps = [
229 "../rtc_base:rtc_base",
230 "../rtc_base/system:rtc_export",
231 ]
232}
233
Mirko Bonadei85340ce2018-11-19 14:51:39234rtc_source_set("scoped_refptr") {
235 visibility = [ "*" ]
236 sources = [
237 "scoped_refptr.h",
238 ]
239}
240
Patrik Höglundb6b29e02018-06-21 14:58:01241rtc_source_set("video_quality_test_fixture_api") {
242 visibility = [ "*" ]
243 testonly = true
244 sources = [
245 "test/video_quality_test_fixture.h",
246 ]
247 deps = [
Patrik Höglundd8f3c172018-09-26 12:39:17248 ":fec_controller_api",
Patrik Höglundb6b29e02018-06-21 14:58:01249 ":libjingle_peerconnection_api",
Ying Wang0810a7c2019-04-10 11:48:24250 ":network_state_predictor_api",
Niels Möller6dcd4dc2019-08-26 08:45:28251 ":rtp_parameters",
Patrik Höglundb6b29e02018-06-21 14:58:01252 ":simulated_network_api",
253 "../call:fake_network",
254 "../call:rtp_interfaces",
255 "../test:test_common",
256 "../test:video_test_common",
Sebastian Jansson1391ed22019-04-30 12:23:51257 "transport:network_control",
Niels Möller65f17ca2019-09-12 11:59:36258 "transport/media:media_transport_interface",
Patrik Höglundb6b29e02018-06-21 14:58:01259 "video_codecs:video_codecs_api",
260 ]
Patrik Höglundb6b29e02018-06-21 14:58:01261}
262
Artem Titovd57628f2019-03-22 11:34:25263rtc_source_set("video_quality_analyzer_api") {
264 visibility = [ "*" ]
265 testonly = true
266 sources = [
267 "test/video_quality_analyzer_interface.h",
268 ]
269
270 deps = [
271 ":stats_observer_interface",
272 "video:encoded_image",
273 "video:video_frame",
Chen Xing5d24b162019-06-10 10:59:38274 "video:video_rtp_headers",
Artem Titovd57628f2019-03-22 11:34:25275 "video_codecs:video_codecs_api",
Artem Titovd57628f2019-03-22 11:34:25276 "//third_party/abseil-cpp/absl/types:optional",
277 ]
278}
279
Mirko Bonadeif948eb62019-04-05 13:13:23280rtc_source_set("track_id_stream_label_map") {
281 visibility = [ "*" ]
282 sources = [
283 "test/track_id_stream_label_map.h",
284 ]
285}
286
Niels Möller184b4af2019-08-23 11:33:50287rtc_source_set("rtp_parameters") {
288 visibility = [ "*" ]
Niels Möller6dcd4dc2019-08-26 08:45:28289 sources = [
290 "media_types.cc",
291 "media_types.h",
292 "rtp_parameters.cc",
293 "rtp_parameters.h",
294 ]
295 deps = [
296 ":array_view",
297 "../rtc_base:checks",
298 "../rtc_base:stringutils",
299 "../rtc_base/system:rtc_export",
300 "//third_party/abseil-cpp/absl/types:optional",
301 ]
Niels Möller184b4af2019-08-23 11:33:50302}
303
Artem Titovd57628f2019-03-22 11:34:25304rtc_source_set("audio_quality_analyzer_api") {
305 visibility = [ "*" ]
306 testonly = true
307 sources = [
308 "test/audio_quality_analyzer_interface.h",
309 ]
310
311 deps = [
312 ":stats_observer_interface",
Mirko Bonadeif948eb62019-04-05 13:13:23313 ":track_id_stream_label_map",
Artem Titovd57628f2019-03-22 11:34:25314 ]
315}
316
317rtc_source_set("stats_observer_interface") {
318 visibility = [ "*" ]
319 testonly = true
320 sources = [
321 "test/stats_observer_interface.h",
322 ]
323
324 deps = [
Niels Möllerb4a61282019-08-29 10:16:56325 # For api/stats_types.h
Artem Titovd57628f2019-03-22 11:34:25326 ":libjingle_peerconnection_api",
Niels Möller6dcd4dc2019-08-26 08:45:28327 ":rtp_parameters",
Artem Titovd57628f2019-03-22 11:34:25328 ]
329}
330
331rtc_source_set("peer_connection_quality_test_fixture_api") {
332 visibility = [ "*" ]
333 testonly = true
334 sources = [
335 "test/peerconnection_quality_test_fixture.h",
336 ]
337
338 deps = [
339 ":audio_quality_analyzer_api",
340 ":callfactory_api",
341 ":fec_controller_api",
342 ":function_view",
343 ":libjingle_peerconnection_api",
Ying Wang0810a7c2019-04-10 11:48:24344 ":network_state_predictor_api",
Artem Titovd57628f2019-03-22 11:34:25345 ":simulated_network_api",
Artem Titova8549212019-08-19 12:38:06346 ":stats_observer_interface",
Artem Titovd57628f2019-03-22 11:34:25347 ":video_quality_analyzer_api",
Artem Titovf65a89b2019-05-07 09:56:44348 "../media:rtc_media_base",
Artem Titovd57628f2019-03-22 11:34:25349 "../rtc_base:rtc_base",
Danil Chapovalov9305d112019-09-04 11:16:09350 "rtc_event_log",
Danil Chapovalov1a5fc902019-06-10 10:58:03351 "task_queue",
Artem Titovd57628f2019-03-22 11:34:25352 "transport:network_control",
Niels Möller65f17ca2019-09-12 11:59:36353 "transport/media:media_transport_interface",
Artem Titovd57628f2019-03-22 11:34:25354 "units:time_delta",
355 "video_codecs:video_codecs_api",
356 "//third_party/abseil-cpp/absl/memory",
357 "//third_party/abseil-cpp/absl/types:optional",
358 ]
359}
360
Patrik Höglundd8f3c172018-09-26 12:39:17361rtc_source_set("test_dependency_factory") {
362 visibility = [ "*" ]
363 testonly = true
364 sources = [
365 "test/test_dependency_factory.cc",
366 "test/test_dependency_factory.h",
367 ]
368 deps = [
369 ":video_quality_test_fixture_api",
Yves Gerey3e707812018-11-28 15:47:49370 "../rtc_base:checks",
Patrik Höglundd8f3c172018-09-26 12:39:17371 "../rtc_base:thread_checker",
tzikf0e926f2018-10-15 04:52:10372 "//third_party/abseil-cpp/absl/memory",
Patrik Höglundd8f3c172018-09-26 12:39:17373 ]
Patrik Höglundd8f3c172018-09-26 12:39:17374}
375
Patrik Höglundb6b29e02018-06-21 14:58:01376if (rtc_include_tests) {
377 rtc_source_set("create_video_quality_test_fixture_api") {
378 visibility = [ "*" ]
379 testonly = true
380 sources = [
381 "test/create_video_quality_test_fixture.cc",
382 "test/create_video_quality_test_fixture.h",
383 ]
384 deps = [
385 ":fec_controller_api",
Ying Wang0810a7c2019-04-10 11:48:24386 ":network_state_predictor_api",
Mirko Bonadeid9708072019-01-25 19:26:48387 ":scoped_refptr",
Patrik Höglundb6b29e02018-06-21 14:58:01388 ":video_quality_test_fixture_api",
Patrik Höglundb6b29e02018-06-21 14:58:01389 "../video:video_quality_test",
Karl Wiberg918f50c2018-07-05 09:40:33390 "//third_party/abseil-cpp/absl/memory",
Patrik Höglundb6b29e02018-06-21 14:58:01391 ]
Patrik Höglundb6b29e02018-06-21 14:58:01392 }
Artem Titov7bf8c7f2019-03-15 14:00:37393
Artem Titov8ea8dcb2019-03-26 12:38:02394 rtc_source_set("create_network_emulation_manager") {
Artem Titov7bf8c7f2019-03-15 14:00:37395 visibility = [ "*" ]
396 testonly = true
397 sources = [
398 "test/create_network_emulation_manager.cc",
399 "test/create_network_emulation_manager.h",
400 ]
401 deps = [
402 ":network_emulation_manager_api",
Artem Titov386802e2019-07-05 08:48:17403 "../test/network:emulated_network",
Artem Titov533a9fe2019-03-21 11:18:05404 "//third_party/abseil-cpp/absl/memory",
Artem Titov7bf8c7f2019-03-15 14:00:37405 ]
406 }
Artem Titovd57628f2019-03-22 11:34:25407
408 rtc_source_set("create_peerconnection_quality_test_fixture") {
409 visibility = [ "*" ]
410 testonly = true
411 sources = [
412 "test/create_peerconnection_quality_test_fixture.cc",
413 "test/create_peerconnection_quality_test_fixture.h",
414 ]
415
416 deps = [
417 ":audio_quality_analyzer_api",
418 ":peer_connection_quality_test_fixture_api",
419 ":video_quality_analyzer_api",
420 "../test/pc/e2e:peerconnection_quality_test",
421 "//third_party/abseil-cpp/absl/memory",
422 ]
423 }
Patrik Höglundb6b29e02018-06-21 14:58:01424}
425
Elad Alon80810732017-10-06 11:07:32426rtc_source_set("libjingle_logging_api") {
Per Kjellandera7f2d842018-01-10 15:54:53427 visibility = [ "*" ]
Elad Alon80810732017-10-06 11:07:32428 sources = [
Steve Anton10542f22019-01-11 17:11:00429 "rtc_event_log_output.h",
Elad Alon80810732017-10-06 11:07:32430 ]
431}
432
Niels Möllerd8b9ed72019-05-08 11:53:51433rtc_source_set("rtc_event_log_output_file") {
434 visibility = [ "*" ]
435 sources = [
436 "rtc_event_log_output_file.cc",
437 "rtc_event_log_output_file.h",
438 ]
439
440 deps = [
441 ":libjingle_logging_api",
Niels Möllerd8b9ed72019-05-08 11:53:51442 "../rtc_base:checks",
443 "../rtc_base:rtc_base_approved",
444 "../rtc_base/system:file_wrapper",
Danil Chapovalovb32f2c72019-05-22 11:39:25445 "rtc_event_log",
Niels Möllerd8b9ed72019-05-08 11:53:51446 ]
447}
448
hbos74e1a4f2016-09-16 06:33:01449rtc_source_set("rtc_stats_api") {
Per Kjellandera7f2d842018-01-10 15:54:53450 visibility = [ "*" ]
hbos74e1a4f2016-09-16 06:33:01451 cflags = []
452 sources = [
Steve Anton10542f22019-01-11 17:11:00453 "stats/rtc_stats.h",
454 "stats/rtc_stats_collector_callback.h",
455 "stats/rtc_stats_report.h",
hbos74e1a4f2016-09-16 06:33:01456 "stats/rtcstats_objects.h",
hbos74e1a4f2016-09-16 06:33:01457 ]
458
459 deps = [
Mirko Bonadeid9708072019-01-25 19:26:48460 ":scoped_refptr",
Patrik Höglunda8005cf2017-12-13 15:05:42461 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 17:40:47462 "../rtc_base:rtc_base_approved",
Mirko Bonadei3b56ee72018-10-15 15:15:12463 "../rtc_base/system:rtc_export",
hbos74e1a4f2016-09-16 06:33:01464 ]
465}
466
Niels Möllera6fe2612018-01-19 10:28:54467rtc_source_set("audio_options_api") {
468 visibility = [ "*" ]
469 sources = [
Paulina Hensman11b34f42018-04-09 12:24:52470 "audio_options.cc",
Niels Möllera6fe2612018-01-19 10:28:54471 "audio_options.h",
472 ]
473
474 deps = [
Yves Gerey3e707812018-11-28 15:47:49475 ":array_view",
Danil Chapovalov21652332018-08-31 08:29:07476 "../rtc_base:stringutils",
Danil Chapovalov0bc58cf2018-06-21 11:32:56477 "//third_party/abseil-cpp/absl/types:optional",
Niels Möllera6fe2612018-01-19 10:28:54478 ]
479}
480
aleloia8eb7562016-11-28 15:02:13481rtc_source_set("transport_api") {
Per Kjellandera7f2d842018-01-10 15:54:53482 visibility = [ "*" ]
aleloia8eb7562016-11-28 15:02:13483 sources = [
Dino Radaković1807d572018-02-22 13:18:06484 "call/transport.cc",
aleloia8eb7562016-11-28 15:02:13485 "call/transport.h",
486 ]
487}
nisseb2250e52016-12-02 12:01:14488
Sebastian Jansson6736df12018-11-21 18:18:39489rtc_source_set("bitrate_allocation") {
490 visibility = [ "*" ]
491 sources = [
492 "call/bitrate_allocation.h",
493 ]
494 deps = [
495 "units:data_rate",
496 "units:time_delta",
497 ]
498}
499
Patrik Höglundb6b29e02018-06-21 14:58:01500rtc_source_set("simulated_network_api") {
501 visibility = [ "*" ]
502 sources = [
503 "test/simulated_network.h",
504 ]
505 deps = [
Artem Titov94b57c02019-03-21 12:35:10506 "../rtc_base",
Patrik Höglundb6b29e02018-06-21 14:58:01507 "../rtc_base:criticalsection",
Danil Chapovalov065a52a2018-07-09 08:58:54508 "//third_party/abseil-cpp/absl/types:optional",
Patrik Höglundb6b29e02018-06-21 14:58:01509 ]
510}
511
Artem Titov7bf8c7f2019-03-15 14:00:37512rtc_source_set("network_emulation_manager_api") {
513 visibility = [ "*" ]
514 sources = [
515 "test/network_emulation_manager.h",
516 ]
517 deps = [
518 ":simulated_network_api",
Artem Titov94b57c02019-03-21 12:35:10519 "../rtc_base",
Artem Titov806299e2019-04-12 10:17:19520 "units:data_rate",
521 "units:data_size",
522 "units:timestamp",
Artem Titov7bf8c7f2019-03-15 14:00:37523 ]
524}
525
Ying Wang3b790f32018-01-19 16:58:57526rtc_source_set("fec_controller_api") {
527 visibility = [ "*" ]
528 sources = [
529 "fec_controller.h",
Elad Alon8f01c4e2019-06-28 13:19:43530 "fec_controller_override.h",
Ying Wang3b790f32018-01-19 16:58:57531 ]
532
533 deps = [
Ying Wang0dd1b0a2018-02-20 11:50:27534 "../modules:module_fec_api",
Niels Möller8f7ce222019-03-21 14:43:58535 "video:video_frame_type",
Ying Wang3b790f32018-01-19 16:58:57536 ]
537}
538
Ying Wang0810a7c2019-04-10 11:48:24539rtc_source_set("network_state_predictor_api") {
540 visibility = [ "*" ]
541 sources = [
542 "network_state_predictor.h",
543 ]
544}
545
kwiberg529662a2017-09-04 12:43:17546rtc_source_set("array_view") {
Per Kjellandera7f2d842018-01-10 15:54:53547 visibility = [ "*" ]
kwiberg529662a2017-09-04 12:43:17548 sources = [
549 "array_view.h",
550 ]
551 deps = [
Patrik Höglunda8005cf2017-12-13 15:05:42552 "../rtc_base:checks",
553 "../rtc_base:type_traits",
kwiberg529662a2017-09-04 12:43:17554 ]
555}
556
Niels Möller9155e492017-10-23 09:22:30557rtc_source_set("refcountedbase") {
Per Kjellandera7f2d842018-01-10 15:54:53558 visibility = [ "*" ]
Niels Möller9155e492017-10-23 09:22:30559 sources = [
Steve Anton10542f22019-01-11 17:11:00560 "ref_counted_base.h",
Niels Möller9155e492017-10-23 09:22:30561 ]
562 deps = [
563 "../rtc_base:rtc_base_approved",
564 ]
565}
566
Harald Alvestrand98462622019-01-30 13:57:03567rtc_source_set("ice_transport_factory") {
568 visibility = [ "*" ]
569 sources = [
570 "ice_transport_factory.cc",
571 "ice_transport_factory.h",
572 ]
573 deps = [
574 ":libjingle_peerconnection_api",
575 ":scoped_refptr",
576 "../p2p:rtc_p2p",
Artem Titov94b57c02019-03-21 12:35:10577 "../rtc_base",
Mirko Bonadei66e76792019-04-02 09:33:59578 "../rtc_base/system:rtc_export",
Steve Anton6fdfec12019-07-01 21:07:33579 "rtc_event_log:rtc_event_log",
Artem Titov533a9fe2019-03-21 11:18:05580 "//third_party/abseil-cpp/absl/memory",
Harald Alvestrand98462622019-01-30 13:57:03581 ]
582}
583
Ivo Creusen55de08e2018-09-03 09:49:27584rtc_source_set("neteq_simulator_api") {
585 visibility = [ "*" ]
586 sources = [
587 "test/neteq_simulator.cc",
588 "test/neteq_simulator.h",
589 ]
590}
591
Artem Titov741daaf2019-03-21 13:37:36592rtc_source_set("function_view") {
593 visibility = [ "*" ]
594 sources = [
595 "function_view.h",
596 ]
597 deps = [
598 "../rtc_base:checks",
599 ]
600}
601
kjellanderfd5b4e92016-06-13 19:08:33602if (rtc_include_tests) {
Ivo Creusen2cb41052018-03-15 11:22:52603 if (rtc_enable_protobuf) {
604 rtc_source_set("audioproc_f_api") {
605 visibility = [ "*" ]
606 testonly = true
607 sources = [
608 "test/audioproc_float.cc",
609 "test/audioproc_float.h",
610 ]
611
612 deps = [
Artem Titov94b57c02019-03-21 12:35:10613 "../modules/audio_processing",
Alessio Bazzicab768e882018-11-07 14:29:54614 "../modules/audio_processing:api",
Ivo Creusen2cb41052018-03-15 11:22:52615 "../modules/audio_processing:audioproc_f_impl",
616 ]
617 }
Ivo Creusen55de08e2018-09-03 09:49:27618
619 rtc_source_set("neteq_simulator_factory") {
620 visibility = [ "*" ]
621 testonly = true
622 sources = [
623 "test/neteq_simulator_factory.cc",
624 "test/neteq_simulator_factory.h",
625 ]
626 deps = [
627 ":neteq_simulator_api",
628 "../modules/audio_coding:neteq_test_factory",
Ivo Creusenf81b0f12018-09-11 08:30:58629 "../rtc_base:checks",
Mirko Bonadei2ab97f62019-07-18 11:44:12630 "//third_party/abseil-cpp/absl/flags:flag",
631 "//third_party/abseil-cpp/absl/flags:parse",
Ivo Creusen55de08e2018-09-03 09:49:27632 "//third_party/abseil-cpp/absl/memory",
Ivo Creusen5ec61562019-03-20 09:52:18633 "//third_party/abseil-cpp/absl/strings",
Ivo Creusen55de08e2018-09-03 09:49:27634 ]
635 }
Ivo Creusen2cb41052018-03-15 11:22:52636 }
637
Rasmus Brandt0cedc052018-05-31 10:53:00638 rtc_source_set("simulcast_test_fixture_api") {
639 visibility = [ "*" ]
640 testonly = true
641 sources = [
642 "test/simulcast_test_fixture.h",
643 ]
644 }
645
646 rtc_source_set("create_simulcast_test_fixture_api") {
647 visibility = [ "*" ]
648 testonly = true
649 sources = [
650 "test/create_simulcast_test_fixture.cc",
651 "test/create_simulcast_test_fixture.h",
652 ]
653 deps = [
654 ":simulcast_test_fixture_api",
655 "../modules/video_coding:simulcast_test_fixture_impl",
656 "../rtc_base:rtc_base_approved",
657 "video_codecs:video_codecs_api",
Karl Wiberg918f50c2018-07-05 09:40:33658 "//third_party/abseil-cpp/absl/memory",
Rasmus Brandt0cedc052018-05-31 10:53:00659 ]
Rasmus Brandt0cedc052018-05-31 10:53:00660 }
661
Kári Tristan Helgason9d96e922018-05-04 09:56:55662 rtc_source_set("videocodec_test_fixture_api") {
663 visibility = [ "*" ]
664 testonly = true
665 sources = [
666 "test/videocodec_test_fixture.h",
Kári Tristan Helgason169005d2018-05-22 11:34:14667 "test/videocodec_test_stats.cc",
668 "test/videocodec_test_stats.h",
Kári Tristan Helgason9d96e922018-05-04 09:56:55669 ]
670 deps = [
Kári Tristan Helgason169005d2018-05-22 11:34:14671 "..:webrtc_common",
672 "../modules/video_coding:video_codec_interface",
Jonas Olsson366a50c2018-09-06 11:41:30673 "../rtc_base:stringutils",
Niels Möller8f7ce222019-03-21 14:43:58674 "video:video_frame_type",
Kári Tristan Helgason9d96e922018-05-04 09:56:55675 "video_codecs:video_codecs_api",
676 ]
677 }
678
679 rtc_source_set("create_videocodec_test_fixture_api") {
680 visibility = [ "*" ]
681 testonly = true
682 sources = [
683 "test/create_videocodec_test_fixture.cc",
684 "test/create_videocodec_test_fixture.h",
685 ]
686 deps = [
687 ":videocodec_test_fixture_api",
688 "../modules/video_coding:video_codecs_test_framework",
689 "../modules/video_coding:videocodec_test_impl",
690 "../rtc_base:rtc_base_approved",
691 "video_codecs:video_codecs_api",
Karl Wiberg918f50c2018-07-05 09:40:33692 "//third_party/abseil-cpp/absl/memory",
Kári Tristan Helgason9d96e922018-05-04 09:56:55693 ]
Kári Tristan Helgason9d96e922018-05-04 09:56:55694 }
695
kjellander2f6af9c2017-03-03 06:26:23696 rtc_source_set("mock_audio_mixer") {
697 testonly = true
698 sources = [
699 "test/mock_audio_mixer.h",
700 ]
701
kjellander2f6af9c2017-03-03 06:26:23702 deps = [
jianjun.zhuc0247402017-07-11 13:20:45703 "../test:test_support",
Gustaf Ullberg2ae140a2018-02-16 12:43:49704 "audio:audio_mixer_api",
kjellander2f6af9c2017-03-03 06:26:23705 ]
706 }
707
Elad Alon45befc52019-07-02 09:20:09708 rtc_source_set("mock_fec_controller_override") {
709 testonly = true
710 sources = [
711 "test/mock_fec_controller_override.h",
712 ]
713 deps = [
714 ":fec_controller_api",
715 "../test:test_support",
716 ]
717 }
718
Benjamin Wright78410ad2018-10-25 16:52:57719 rtc_source_set("mock_frame_encryptor") {
720 testonly = true
721 sources = [
722 "test/mock_frame_encryptor.cc",
723 "test/mock_frame_encryptor.h",
724 ]
725 deps = [
Niels Möllerb4a61282019-08-29 10:16:56726 # For api/crypto/frame_encryptor_interface.h
Benjamin Wright78410ad2018-10-25 16:52:57727 ":libjingle_peerconnection_api",
728 "../test:test_support",
729 ]
730 }
731
732 rtc_source_set("mock_frame_decryptor") {
733 testonly = true
734 sources = [
735 "test/mock_frame_decryptor.cc",
736 "test/mock_frame_decryptor.h",
737 ]
738 deps = [
739 ":libjingle_peerconnection_api",
740 "../test:test_support",
741 ]
742 }
743
744 rtc_source_set("fake_frame_encryptor") {
745 testonly = true
746 sources = [
747 "test/fake_frame_encryptor.cc",
748 "test/fake_frame_encryptor.h",
749 ]
750 deps = [
751 ":array_view",
752 ":libjingle_peerconnection_api",
Niels Möller6dcd4dc2019-08-26 08:45:28753 ":rtp_parameters",
Benjamin Wright78410ad2018-10-25 16:52:57754 "..:webrtc_common",
755 "../rtc_base:checks",
756 "../rtc_base:rtc_base_approved",
757 ]
758 }
759
760 rtc_source_set("fake_frame_decryptor") {
Benjamin Wright84583f62018-10-04 21:22:34761 testonly = true
762 sources = [
763 "test/fake_frame_decryptor.cc",
764 "test/fake_frame_decryptor.h",
Benjamin Wright84583f62018-10-04 21:22:34765 ]
766 deps = [
767 ":array_view",
768 ":libjingle_peerconnection_api",
Niels Möller6dcd4dc2019-08-26 08:45:28769 ":rtp_parameters",
Benjamin Wright84583f62018-10-04 21:22:34770 "..:webrtc_common",
771 "../rtc_base:checks",
772 "../rtc_base:rtc_base_approved",
773 ]
774 }
775
Niels Möllere78fd802019-09-13 12:45:55776 rtc_source_set("dummy_peer_connection") {
777 visibility = [ "*" ]
778 testonly = true
779 sources = [
780 "test/dummy_peer_connection.h",
781 ]
782
783 deps = [
784 ":libjingle_peerconnection_api",
785 ":rtc_error",
786 "../rtc_base:checks",
787 "../rtc_base:refcount",
788 ]
789 }
790
Jiawei Ou651b92e2018-06-29 22:46:44791 rtc_source_set("mock_peerconnectioninterface") {
792 testonly = true
793 sources = [
794 "test/mock_peerconnectioninterface.h",
795 ]
796
797 deps = [
798 ":libjingle_peerconnection_api",
799 "../test:test_support",
800 ]
801 }
802
Patrik Höglund4b9e6ba2017-12-19 09:32:11803 rtc_source_set("mock_rtp") {
804 testonly = true
805 sources = [
806 "test/mock_rtpreceiver.h",
807 "test/mock_rtpsender.h",
808 ]
809
810 deps = [
811 ":libjingle_peerconnection_api",
812 "../test:test_support",
Patrik Höglund4b9e6ba2017-12-19 09:32:11813 ]
814 }
815
Jiawei Ou4206a0a2018-07-20 22:49:43816 rtc_source_set("mock_video_bitrate_allocator") {
817 testonly = true
818 sources = [
819 "test/mock_video_bitrate_allocator.h",
820 ]
821
822 deps = [
823 "../api/video:video_bitrate_allocator",
824 "../test:test_support",
825 ]
826 }
827
Jiawei Ouc2ebe212018-11-08 18:02:56828 rtc_source_set("mock_video_bitrate_allocator_factory") {
829 testonly = true
830 sources = [
831 "test/mock_video_bitrate_allocator_factory.h",
832 ]
833
834 deps = [
835 "../api/video:video_bitrate_allocator_factory",
836 "../test:test_support",
837 ]
838 }
839
Emircan Uysalerdbcac7f2017-10-31 06:10:12840 rtc_source_set("mock_video_codec_factory") {
841 testonly = true
842 sources = [
843 "test/mock_video_decoder_factory.h",
844 "test/mock_video_encoder_factory.h",
845 ]
846
Emircan Uysalerdbcac7f2017-10-31 06:10:12847 deps = [
Mirko Bonadei34814c72018-01-11 09:13:56848 "../api/video_codecs:video_codecs_api",
Emircan Uysalerdbcac7f2017-10-31 06:10:12849 "../test:test_support",
Emircan Uysalerdbcac7f2017-10-31 06:10:12850 ]
851 }
852
Erik Språngc84cd952018-10-15 09:55:13853 rtc_source_set("mock_video_decoder") {
854 visibility = [ "*" ]
855
856 testonly = true
857 sources = [
858 "test/mock_video_decoder.cc",
859 "test/mock_video_decoder.h",
860 ]
861
862 deps = [
863 "../api/video_codecs:video_codecs_api",
864 "../test:test_support",
865 ]
866 }
867
Erik Språng6af1c922018-10-12 08:01:30868 rtc_source_set("mock_video_encoder") {
Erik Språngc84cd952018-10-15 09:55:13869 visibility = [ "*" ]
870
Erik Språng6af1c922018-10-12 08:01:30871 testonly = true
872 sources = [
873 "test/mock_video_encoder.cc",
874 "test/mock_video_encoder.h",
875 ]
876
877 deps = [
878 "../api/video_codecs:video_codecs_api",
879 "../test:test_support",
880 ]
881 }
882
Anton Sukhanov7940da02018-10-10 17:34:49883 rtc_source_set("fake_media_transport") {
884 testonly = true
885
886 sources = [
Bjorn A Mellemc85ebbe2019-06-07 17:28:06887 "test/fake_datagram_transport.h",
Anton Sukhanov7940da02018-10-10 17:34:49888 "test/fake_media_transport.h",
889 ]
890
891 deps = [
Anton Sukhanov7940da02018-10-10 17:34:49892 "../rtc_base:checks",
Niels Möller65f17ca2019-09-12 11:59:36893 "transport:datagram_transport_interface",
894 "transport/media:media_transport_interface",
Steve Antona59dcc32019-03-25 20:53:07895 "//third_party/abseil-cpp/absl/algorithm:container",
Yves Gerey3e707812018-11-28 15:47:49896 "//third_party/abseil-cpp/absl/memory",
Anton Sukhanov7940da02018-10-10 17:34:49897 ]
898 }
Niels Möller2e47f7c2018-10-16 08:41:42899
900 rtc_source_set("loopback_media_transport") {
901 testonly = true
902
903 sources = [
Niels Möllere0446cb2018-11-30 08:35:52904 "test/loopback_media_transport.cc",
Niels Möller2e47f7c2018-10-16 08:41:42905 "test/loopback_media_transport.h",
906 ]
907
908 deps = [
Artem Titov94b57c02019-03-21 12:35:10909 "../rtc_base",
Niels Möller2e47f7c2018-10-16 08:41:42910 "../rtc_base:checks",
Niels Möller65f17ca2019-09-12 11:59:36911 "transport:datagram_transport_interface",
912 "transport/media:media_transport_interface",
Steve Antona59dcc32019-03-25 20:53:07913 "//third_party/abseil-cpp/absl/algorithm:container",
Niels Möllere0446cb2018-11-30 08:35:52914 "//third_party/abseil-cpp/absl/memory",
Niels Möller2e47f7c2018-10-16 08:41:42915 ]
916 }
917
918 rtc_source_set("rtc_api_unittests") {
919 testonly = true
920
921 sources = [
922 "array_view_unittest.cc",
Artem Titov741daaf2019-03-21 13:37:36923 "function_view_unittest.cc",
Steve Anton10542f22019-01-11 17:11:00924 "rtc_error_unittest.cc",
Niels Möllerd8b9ed72019-05-08 11:53:51925 "rtc_event_log_output_file_unittest.cc",
Chen Xingd2a66862019-06-03 12:53:42926 "rtp_packet_info_unittest.cc",
927 "rtp_packet_infos_unittest.cc",
Steve Anton10542f22019-01-11 17:11:00928 "rtp_parameters_unittest.cc",
Niels Möller2e47f7c2018-10-16 08:41:42929 "test/loopback_media_transport_unittest.cc",
930 ]
931
Niels Möller2e47f7c2018-10-16 08:41:42932 deps = [
933 ":array_view",
Artem Titov741daaf2019-03-21 13:37:36934 ":function_view",
Niels Möller2e47f7c2018-10-16 08:41:42935 ":libjingle_peerconnection_api",
936 ":loopback_media_transport",
Mirko Bonadeifcfeefe2019-09-10 08:51:23937 ":rtc_error",
Niels Möllerd8b9ed72019-05-08 11:53:51938 ":rtc_event_log_output_file",
Chen Xingd2a66862019-06-03 12:53:42939 ":rtp_packet_info",
Niels Möller6dcd4dc2019-08-26 08:45:28940 ":rtp_parameters",
Niels Möller2e47f7c2018-10-16 08:41:42941 "../rtc_base:checks",
Mirko Bonadeie3abb812018-11-23 12:15:08942 "../rtc_base:gunit_helpers",
Niels Möller2e47f7c2018-10-16 08:41:42943 "../rtc_base:rtc_base_approved",
Niels Möllerd8b9ed72019-05-08 11:53:51944 "../test:fileutils",
Niels Möller2e47f7c2018-10-16 08:41:42945 "../test:test_support",
Danil Chapovalov2684ab32019-02-26 09:18:08946 "task_queue:task_queue_default_factory_unittests",
Niels Möller2e47f7c2018-10-16 08:41:42947 "units:units_unittests",
Danil Chapovalovb703db92019-04-08 14:59:28948 "video:video_unittests",
Niels Möllerd8b9ed72019-05-08 11:53:51949 "//third_party/abseil-cpp/absl/memory",
Niels Möller2e47f7c2018-10-16 08:41:42950 ]
951 }
Harald Alvestrand3cc45d42019-03-14 04:42:04952
953 rtc_source_set("compile_all_headers") {
954 testonly = true
955
956 sources = [
957 "test/compile_all_headers.cc",
958 ]
959
960 deps = [
961 ":fake_frame_decryptor",
962 ":fake_frame_encryptor",
963 ":fake_media_transport",
964 ":loopback_media_transport",
965 ":mock_audio_mixer",
966 ":mock_frame_decryptor",
967 ":mock_frame_encryptor",
968 ":mock_peerconnectioninterface",
969 ":mock_rtp",
970 ":mock_video_bitrate_allocator",
971 ":mock_video_bitrate_allocator_factory",
972 ":mock_video_codec_factory",
973 ":mock_video_decoder",
974 ":mock_video_encoder",
975 ":rtc_api_unittests",
976 "units:units_unittests",
977 ]
978 }
kjellanderfd5b4e92016-06-13 19:08:33979}