blob: 5d02637085b2bb1b206a434ab5232c0f02b1b390 [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
Mirko Bonadei3cf8f3e2018-11-19 08:17:5138rtc_static_library("create_peerconnection_factory") {
Mirko Bonadeic3313a32018-11-19 13:30:1739 visibility = [ "*" ]
Mirko Bonadei3cf8f3e2018-11-19 08:17:5140 sources = [
41 "create_peerconnection_factory.cc",
42 "create_peerconnection_factory.h",
43 ]
Mirko Bonadei2ff3f492018-11-22 08:00:1344 deps = [
45 ":callfactory_api",
46 ":fec_controller_api",
47 ":libjingle_peerconnection_api",
Mirko Bonadeid9708072019-01-25 19:26:4848 ":scoped_refptr",
Mirko Bonadei2ff3f492018-11-22 08:00:1349 "../logging:rtc_event_log_api",
50 "../logging:rtc_event_log_impl_base",
51 "../media:rtc_audio_video",
Yves Gerey3e707812018-11-28 15:47:4952 "../media:rtc_media_base",
Mirko Bonadei2ff3f492018-11-22 08:00:1353 "../modules/audio_device:audio_device_api",
54 "../modules/audio_processing:api",
55 "../pc:peerconnection",
Anders Carlsson01092952018-12-11 14:44:5456 "../rtc_base:deprecation",
Mirko Bonadei2ff3f492018-11-22 08:00:1357 "../rtc_base:rtc_base",
58 "../rtc_base:rtc_base_approved",
59 "audio:audio_mixer_api",
60 "audio_codecs:audio_codecs_api",
61 "transport:network_control",
62 "video_codecs:video_codecs_api",
63 ]
Mirko Bonadei3cf8f3e2018-11-19 08:17:5164}
65
Niels Möllerb8389522019-03-19 13:27:0366rtc_source_set("rtp_headers") {
67 visibility = [ "*" ]
68}
69
ossu7bb87ee2017-01-23 12:56:2570rtc_static_library("libjingle_peerconnection_api") {
Per Kjellandera7f2d842018-01-10 15:54:5371 visibility = [ "*" ]
kjellanderc76dc952016-06-03 10:09:3272 cflags = []
73 sources = [
Steve Anton10542f22019-01-11 17:11:0074 "async_resolver_factory.h",
Patrik Höglundb6b29e02018-06-21 14:58:0175 "bitrate_constraints.h",
Steve Anton36b28db2017-10-26 18:27:1776 "candidate.cc",
Patrik Höglunde2d6a062017-10-05 12:53:3377 "candidate.h",
Steve Anton10542f22019-01-11 17:11:0078 "crypto/crypto_options.cc",
79 "crypto/crypto_options.h",
80 "crypto/frame_decryptor_interface.h",
81 "crypto/frame_encryptor_interface.h",
82 "crypto_params.h",
83 "data_channel_interface.cc",
84 "data_channel_interface.h",
85 "dtls_transport_interface.h",
86 "dtmf_sender_interface.h",
Harald Alvestrand98462622019-01-30 13:57:0387 "ice_transport_interface.h",
Steve Anton845bb732017-12-05 20:50:2688 "jsep.cc",
kjellanderc76dc952016-06-03 10:09:3289 "jsep.h",
Steve Anton10542f22019-01-11 17:11:0090 "jsep_ice_candidate.cc",
91 "jsep_ice_candidate.h",
92 "jsep_session_description.h",
Steve Anton10542f22019-01-11 17:11:0093 "media_stream_interface.cc",
94 "media_stream_interface.h",
95 "media_stream_proxy.h",
96 "media_stream_track_proxy.h",
Niels Möller3a742392018-10-08 09:13:5897 "media_transport_interface.cc",
Anton Sukhanovf60bd4b2018-09-05 17:41:4698 "media_transport_interface.h",
Steve Anton10542f22019-01-11 17:11:0099 "media_types.cc",
100 "media_types.h",
kjellanderc76dc952016-06-03 10:09:32101 "notifier.h",
Steve Anton10542f22019-01-11 17:11:00102 "peer_connection_factory_proxy.h",
103 "peer_connection_interface.cc",
104 "peer_connection_interface.h",
105 "peer_connection_proxy.h",
Steve Antonf2737d22017-10-31 23:27:34106 "proxy.cc",
kjellanderc76dc952016-06-03 10:09:32107 "proxy.h",
Steve Anton10542f22019-01-11 17:11:00108 "rtc_error.cc",
109 "rtc_error.h",
Patrik Höglund3e113432017-12-15 13:40:10110 "rtp_headers.cc",
111 "rtp_headers.h",
Steve Anton10542f22019-01-11 17:11:00112 "rtp_parameters.cc",
113 "rtp_parameters.h",
114 "rtp_receiver_interface.cc",
115 "rtp_receiver_interface.h",
116 "rtp_sender_interface.cc",
117 "rtp_sender_interface.h",
118 "rtp_transceiver_interface.cc",
119 "rtp_transceiver_interface.h",
Harald Alvestrandc85328f2019-02-28 06:51:00120 "sctp_transport_interface.cc",
121 "sctp_transport_interface.h",
Steve Anton10542f22019-01-11 17:11:00122 "set_remote_description_observer_interface.h",
123 "stats_types.cc",
124 "stats_types.h",
125 "turn_customizer.h",
126 "uma_metrics.h",
127 "video_track_source_proxy.h",
kjellanderc76dc952016-06-03 10:09:32128 ]
kjellanderc76dc952016-06-03 10:09:32129 deps = [
Patrik Höglund3e113432017-12-15 13:40:10130 ":array_view",
Niels Möllera6fe2612018-01-19 10:28:54131 ":audio_options_api",
Niels Möller8366e172018-02-14 11:20:13132 ":callfactory_api",
Ying Wang0dd1b0a2018-02-20 11:50:27133 ":fec_controller_api",
Niels Möller8366e172018-02-14 11:20:13134 ":libjingle_logging_api",
hbos74e1a4f2016-09-16 06:33:01135 ":rtc_stats_api",
Mirko Bonadeid9708072019-01-25 19:26:48136 ":scoped_refptr",
Gustaf Ullberg2ae140a2018-02-16 12:43:49137 "audio:audio_mixer_api",
Patrik Höglundb5b5bce2017-11-13 09:19:58138 "audio_codecs:audio_codecs_api",
Niels Möller0c4f7be2018-05-07 12:01:37139 "transport:bitrate_settings",
Sebastian Janssondfce03a2018-05-18 16:05:10140 "transport:network_control",
Niels Möllerec3b9ff2019-02-07 23:28:39141 "transport/media:audio_interfaces",
Niels Möller7e0e44f2019-02-12 13:04:11142 "transport/media:video_interfaces",
Piotr (Peter) Slatala48c54932019-01-28 14:50:38143 "units:data_rate",
Niels Möller3a742392018-10-08 09:13:58144 "video:encoded_image",
Niels Möllerc6ce9c52018-05-11 09:15:30145 "video:video_frame",
Steve Anton2c9ebef2019-01-29 01:27:58146 "//third_party/abseil-cpp/absl/algorithm:container",
Steve Anton6fe1fba2018-12-11 18:15:23147 "//third_party/abseil-cpp/absl/strings",
Danil Chapovalov0bc58cf2018-06-21 11:32:56148 "//third_party/abseil-cpp/absl/types:optional",
Patrik Höglundb5b5bce2017-11-13 09:19:58149
150 # Basically, don't add stuff here. You might break sensitive downstream
151 # targets like pnacl. API should not depend on anything outside of this
152 # file, really. All these should arguably go away in time.
kjellander8a116632017-04-21 12:17:08153 "..:webrtc_common",
Niels Möller8366e172018-02-14 11:20:13154 "../logging:rtc_event_log_api",
Niels Möller6daa2782018-01-23 09:37:42155 "../media:rtc_media_config",
Patrik Höglundb874a352017-11-27 13:32:41156 "../modules/audio_processing:audio_processing_statistics",
Patrik Höglund3e113432017-12-15 13:40:10157 "../rtc_base:checks",
158 "../rtc_base:deprecation",
ehmaldonadof6a861a2017-07-19 17:40:47159 "../rtc_base:rtc_base",
160 "../rtc_base:rtc_base_approved",
Mirko Bonadei3b56ee72018-10-15 15:15:12161 "../rtc_base/system:rtc_export",
kjellanderc76dc952016-06-03 10:09:32162 ]
Niels Möller8366e172018-02-14 11:20:13163
kjellander8a116632017-04-21 12:17:08164 if (is_nacl) {
Patrik Höglund30bd03b2017-12-19 10:45:31165 # This is needed by .h files included from rtc_base.
kjellander8a116632017-04-21 12:17:08166 deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
167 }
ossu7bb87ee2017-01-23 12:56:25168}
kjellanderc76dc952016-06-03 10:09:32169
Mirko Bonadei85340ce2018-11-19 14:51:39170rtc_source_set("scoped_refptr") {
171 visibility = [ "*" ]
172 sources = [
173 "scoped_refptr.h",
174 ]
175}
176
Patrik Höglundb6b29e02018-06-21 14:58:01177rtc_source_set("video_quality_test_fixture_api") {
178 visibility = [ "*" ]
179 testonly = true
180 sources = [
181 "test/video_quality_test_fixture.h",
182 ]
183 deps = [
Patrik Höglundd8f3c172018-09-26 12:39:17184 ":fec_controller_api",
Patrik Höglundb6b29e02018-06-21 14:58:01185 ":libjingle_peerconnection_api",
186 ":simulated_network_api",
187 "../call:fake_network",
188 "../call:rtp_interfaces",
189 "../test:test_common",
190 "../test:video_test_common",
191 "video_codecs:video_codecs_api",
192 ]
Patrik Höglundb6b29e02018-06-21 14:58:01193}
194
Patrik Höglundd8f3c172018-09-26 12:39:17195rtc_source_set("test_dependency_factory") {
196 visibility = [ "*" ]
197 testonly = true
198 sources = [
199 "test/test_dependency_factory.cc",
200 "test/test_dependency_factory.h",
201 ]
202 deps = [
203 ":video_quality_test_fixture_api",
Yves Gerey3e707812018-11-28 15:47:49204 "../rtc_base:checks",
Patrik Höglundd8f3c172018-09-26 12:39:17205 "../rtc_base:thread_checker",
tzikf0e926f2018-10-15 04:52:10206 "//third_party/abseil-cpp/absl/memory",
Patrik Höglundd8f3c172018-09-26 12:39:17207 ]
Patrik Höglundd8f3c172018-09-26 12:39:17208}
209
Patrik Höglundb6b29e02018-06-21 14:58:01210if (rtc_include_tests) {
211 rtc_source_set("create_video_quality_test_fixture_api") {
212 visibility = [ "*" ]
213 testonly = true
214 sources = [
215 "test/create_video_quality_test_fixture.cc",
216 "test/create_video_quality_test_fixture.h",
217 ]
218 deps = [
219 ":fec_controller_api",
Mirko Bonadeid9708072019-01-25 19:26:48220 ":scoped_refptr",
Patrik Höglundb6b29e02018-06-21 14:58:01221 ":video_quality_test_fixture_api",
Patrik Höglundb6b29e02018-06-21 14:58:01222 "../video:video_quality_test",
Karl Wiberg918f50c2018-07-05 09:40:33223 "//third_party/abseil-cpp/absl/memory",
Patrik Höglundb6b29e02018-06-21 14:58:01224 ]
Patrik Höglundb6b29e02018-06-21 14:58:01225 }
Artem Titov7bf8c7f2019-03-15 14:00:37226
227 rtc_source_set("create_network_emulation_manager_api") {
228 visibility = [ "*" ]
229 testonly = true
230 sources = [
231 "test/create_network_emulation_manager.cc",
232 "test/create_network_emulation_manager.h",
233 ]
234 deps = [
235 ":network_emulation_manager_api",
236 "../test/scenario/network:emulated_network",
237 "//third_party/abseil-cpp/absl/memory:memory",
238 ]
239 }
Patrik Höglundb6b29e02018-06-21 14:58:01240}
241
Elad Alon80810732017-10-06 11:07:32242rtc_source_set("libjingle_logging_api") {
Per Kjellandera7f2d842018-01-10 15:54:53243 visibility = [ "*" ]
Elad Alon80810732017-10-06 11:07:32244 sources = [
Steve Anton10542f22019-01-11 17:11:00245 "rtc_event_log_output.h",
Elad Alon80810732017-10-06 11:07:32246 ]
247}
248
deadbeefe814a0d2017-02-26 02:15:09249rtc_source_set("ortc_api") {
Per Kjellandera7f2d842018-01-10 15:54:53250 visibility = [ "*" ]
deadbeefe814a0d2017-02-26 02:15:09251 sources = [
Steve Anton10542f22019-01-11 17:11:00252 "ortc/packet_transport_interface.h",
253 "ortc/rtp_transport_interface.h",
254 "ortc/srtp_transport_interface.h",
deadbeefe814a0d2017-02-26 02:15:09255 ]
256
Patrik Höglund7aee3d52017-11-15 12:15:17257 deps = [
deadbeefe814a0d2017-02-26 02:15:09258 ":libjingle_peerconnection_api",
Niels Möllerb8389522019-03-19 13:27:03259 ":rtp_headers",
Danil Chapovalov0bc58cf2018-06-21 11:32:56260 "//third_party/abseil-cpp/absl/types:optional",
deadbeefe814a0d2017-02-26 02:15:09261 ]
262}
263
hbos74e1a4f2016-09-16 06:33:01264rtc_source_set("rtc_stats_api") {
Per Kjellandera7f2d842018-01-10 15:54:53265 visibility = [ "*" ]
hbos74e1a4f2016-09-16 06:33:01266 cflags = []
267 sources = [
Steve Anton10542f22019-01-11 17:11:00268 "stats/rtc_stats.h",
269 "stats/rtc_stats_collector_callback.h",
270 "stats/rtc_stats_report.h",
hbos74e1a4f2016-09-16 06:33:01271 "stats/rtcstats_objects.h",
hbos74e1a4f2016-09-16 06:33:01272 ]
273
274 deps = [
Mirko Bonadeid9708072019-01-25 19:26:48275 ":scoped_refptr",
Patrik Höglunda8005cf2017-12-13 15:05:42276 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 17:40:47277 "../rtc_base:rtc_base_approved",
Mirko Bonadei3b56ee72018-10-15 15:15:12278 "../rtc_base/system:rtc_export",
hbos74e1a4f2016-09-16 06:33:01279 ]
280}
281
Niels Möllera6fe2612018-01-19 10:28:54282rtc_source_set("audio_options_api") {
283 visibility = [ "*" ]
284 sources = [
Paulina Hensman11b34f42018-04-09 12:24:52285 "audio_options.cc",
Niels Möllera6fe2612018-01-19 10:28:54286 "audio_options.h",
287 ]
288
289 deps = [
Yves Gerey3e707812018-11-28 15:47:49290 ":array_view",
Danil Chapovalov21652332018-08-31 08:29:07291 "../rtc_base:stringutils",
Danil Chapovalov0bc58cf2018-06-21 11:32:56292 "//third_party/abseil-cpp/absl/types:optional",
Niels Möllera6fe2612018-01-19 10:28:54293 ]
294}
295
aleloia8eb7562016-11-28 15:02:13296rtc_source_set("transport_api") {
Per Kjellandera7f2d842018-01-10 15:54:53297 visibility = [ "*" ]
aleloia8eb7562016-11-28 15:02:13298 sources = [
Dino Radaković1807d572018-02-22 13:18:06299 "call/transport.cc",
aleloia8eb7562016-11-28 15:02:13300 "call/transport.h",
301 ]
302}
nisseb2250e52016-12-02 12:01:14303
Sebastian Jansson6736df12018-11-21 18:18:39304rtc_source_set("bitrate_allocation") {
305 visibility = [ "*" ]
306 sources = [
307 "call/bitrate_allocation.h",
308 ]
309 deps = [
310 "units:data_rate",
311 "units:time_delta",
312 ]
313}
314
Patrik Höglundb6b29e02018-06-21 14:58:01315rtc_source_set("simulated_network_api") {
316 visibility = [ "*" ]
317 sources = [
318 "test/simulated_network.h",
319 ]
320 deps = [
Patrik Höglundb6b29e02018-06-21 14:58:01321 "../rtc_base:criticalsection",
322 "../rtc_base:rtc_base",
Danil Chapovalov065a52a2018-07-09 08:58:54323 "//third_party/abseil-cpp/absl/types:optional",
Patrik Höglundb6b29e02018-06-21 14:58:01324 ]
325}
326
Artem Titov7bf8c7f2019-03-15 14:00:37327rtc_source_set("network_emulation_manager_api") {
328 visibility = [ "*" ]
329 sources = [
330 "test/network_emulation_manager.h",
331 ]
332 deps = [
333 ":simulated_network_api",
334 "../rtc_base:rtc_base",
335 ]
336}
337
Ying Wang3b790f32018-01-19 16:58:57338rtc_source_set("fec_controller_api") {
339 visibility = [ "*" ]
340 sources = [
341 "fec_controller.h",
342 ]
343
344 deps = [
Ying Wang0dd1b0a2018-02-20 11:50:27345 "..:webrtc_common",
346 "../modules:module_fec_api",
Ying Wang3b790f32018-01-19 16:58:57347 ]
348}
349
kwiberg529662a2017-09-04 12:43:17350rtc_source_set("array_view") {
Per Kjellandera7f2d842018-01-10 15:54:53351 visibility = [ "*" ]
kwiberg529662a2017-09-04 12:43:17352 sources = [
353 "array_view.h",
354 ]
355 deps = [
Patrik Höglunda8005cf2017-12-13 15:05:42356 "../rtc_base:checks",
357 "../rtc_base:type_traits",
kwiberg529662a2017-09-04 12:43:17358 ]
359}
360
Niels Möller9155e492017-10-23 09:22:30361rtc_source_set("refcountedbase") {
Per Kjellandera7f2d842018-01-10 15:54:53362 visibility = [ "*" ]
Niels Möller9155e492017-10-23 09:22:30363 sources = [
Steve Anton10542f22019-01-11 17:11:00364 "ref_counted_base.h",
Niels Möller9155e492017-10-23 09:22:30365 ]
366 deps = [
367 "../rtc_base:rtc_base_approved",
368 ]
369}
370
Harald Alvestrand98462622019-01-30 13:57:03371rtc_source_set("ice_transport_factory") {
372 visibility = [ "*" ]
373 sources = [
374 "ice_transport_factory.cc",
375 "ice_transport_factory.h",
376 ]
377 deps = [
378 ":libjingle_peerconnection_api",
379 ":scoped_refptr",
380 "../p2p:rtc_p2p",
381 "../rtc_base:rtc_base",
382 "//third_party/abseil-cpp/absl/memory:memory",
383 ]
384}
385
Ivo Creusen55de08e2018-09-03 09:49:27386rtc_source_set("neteq_simulator_api") {
387 visibility = [ "*" ]
388 sources = [
389 "test/neteq_simulator.cc",
390 "test/neteq_simulator.h",
391 ]
392}
393
kjellanderfd5b4e92016-06-13 19:08:33394if (rtc_include_tests) {
Ivo Creusen2cb41052018-03-15 11:22:52395 if (rtc_enable_protobuf) {
396 rtc_source_set("audioproc_f_api") {
397 visibility = [ "*" ]
398 testonly = true
399 sources = [
400 "test/audioproc_float.cc",
401 "test/audioproc_float.h",
402 ]
403
404 deps = [
Alessio Bazzicab768e882018-11-07 14:29:54405 "../modules/audio_processing:api",
Ivo Creusen2cb41052018-03-15 11:22:52406 "../modules/audio_processing:audio_processing",
407 "../modules/audio_processing:audioproc_f_impl",
408 ]
409 }
Ivo Creusen55de08e2018-09-03 09:49:27410
411 rtc_source_set("neteq_simulator_factory") {
412 visibility = [ "*" ]
413 testonly = true
414 sources = [
415 "test/neteq_simulator_factory.cc",
416 "test/neteq_simulator_factory.h",
417 ]
418 deps = [
419 ":neteq_simulator_api",
420 "../modules/audio_coding:neteq_test_factory",
Ivo Creusenf81b0f12018-09-11 08:30:58421 "../rtc_base:checks",
422 "../rtc_base:rtc_base_approved",
Ivo Creusen55de08e2018-09-03 09:49:27423 "//third_party/abseil-cpp/absl/memory",
424 ]
425 }
Ivo Creusen2cb41052018-03-15 11:22:52426 }
427
Rasmus Brandt0cedc052018-05-31 10:53:00428 rtc_source_set("simulcast_test_fixture_api") {
429 visibility = [ "*" ]
430 testonly = true
431 sources = [
432 "test/simulcast_test_fixture.h",
433 ]
434 }
435
436 rtc_source_set("create_simulcast_test_fixture_api") {
437 visibility = [ "*" ]
438 testonly = true
439 sources = [
440 "test/create_simulcast_test_fixture.cc",
441 "test/create_simulcast_test_fixture.h",
442 ]
443 deps = [
444 ":simulcast_test_fixture_api",
445 "../modules/video_coding:simulcast_test_fixture_impl",
446 "../rtc_base:rtc_base_approved",
447 "video_codecs:video_codecs_api",
Karl Wiberg918f50c2018-07-05 09:40:33448 "//third_party/abseil-cpp/absl/memory",
Rasmus Brandt0cedc052018-05-31 10:53:00449 ]
Rasmus Brandt0cedc052018-05-31 10:53:00450 }
451
Kári Tristan Helgason9d96e922018-05-04 09:56:55452 rtc_source_set("videocodec_test_fixture_api") {
453 visibility = [ "*" ]
454 testonly = true
455 sources = [
456 "test/videocodec_test_fixture.h",
Kári Tristan Helgason169005d2018-05-22 11:34:14457 "test/videocodec_test_stats.cc",
458 "test/videocodec_test_stats.h",
Kári Tristan Helgason9d96e922018-05-04 09:56:55459 ]
460 deps = [
Kári Tristan Helgason169005d2018-05-22 11:34:14461 "..:webrtc_common",
462 "../modules/video_coding:video_codec_interface",
Jonas Olsson366a50c2018-09-06 11:41:30463 "../rtc_base:stringutils",
Kári Tristan Helgason9d96e922018-05-04 09:56:55464 "video_codecs:video_codecs_api",
465 ]
466 }
467
468 rtc_source_set("create_videocodec_test_fixture_api") {
469 visibility = [ "*" ]
470 testonly = true
471 sources = [
472 "test/create_videocodec_test_fixture.cc",
473 "test/create_videocodec_test_fixture.h",
474 ]
475 deps = [
476 ":videocodec_test_fixture_api",
477 "../modules/video_coding:video_codecs_test_framework",
478 "../modules/video_coding:videocodec_test_impl",
479 "../rtc_base:rtc_base_approved",
480 "video_codecs:video_codecs_api",
Karl Wiberg918f50c2018-07-05 09:40:33481 "//third_party/abseil-cpp/absl/memory",
Kári Tristan Helgason9d96e922018-05-04 09:56:55482 ]
Kári Tristan Helgason9d96e922018-05-04 09:56:55483 }
484
kjellander2f6af9c2017-03-03 06:26:23485 rtc_source_set("mock_audio_mixer") {
486 testonly = true
487 sources = [
488 "test/mock_audio_mixer.h",
489 ]
490
kjellander2f6af9c2017-03-03 06:26:23491 deps = [
jianjun.zhuc0247402017-07-11 13:20:45492 "../test:test_support",
Gustaf Ullberg2ae140a2018-02-16 12:43:49493 "audio:audio_mixer_api",
kjellander2f6af9c2017-03-03 06:26:23494 ]
495 }
496
Benjamin Wright78410ad2018-10-25 16:52:57497 rtc_source_set("mock_frame_encryptor") {
498 testonly = true
499 sources = [
500 "test/mock_frame_encryptor.cc",
501 "test/mock_frame_encryptor.h",
502 ]
503 deps = [
504 ":libjingle_peerconnection_api",
505 "../test:test_support",
506 ]
507 }
508
509 rtc_source_set("mock_frame_decryptor") {
510 testonly = true
511 sources = [
512 "test/mock_frame_decryptor.cc",
513 "test/mock_frame_decryptor.h",
514 ]
515 deps = [
516 ":libjingle_peerconnection_api",
517 "../test:test_support",
518 ]
519 }
520
521 rtc_source_set("fake_frame_encryptor") {
522 testonly = true
523 sources = [
524 "test/fake_frame_encryptor.cc",
525 "test/fake_frame_encryptor.h",
526 ]
527 deps = [
528 ":array_view",
529 ":libjingle_peerconnection_api",
530 "..:webrtc_common",
531 "../rtc_base:checks",
532 "../rtc_base:rtc_base_approved",
533 ]
534 }
535
536 rtc_source_set("fake_frame_decryptor") {
Benjamin Wright84583f62018-10-04 21:22:34537 testonly = true
538 sources = [
539 "test/fake_frame_decryptor.cc",
540 "test/fake_frame_decryptor.h",
Benjamin Wright84583f62018-10-04 21:22:34541 ]
542 deps = [
543 ":array_view",
544 ":libjingle_peerconnection_api",
545 "..:webrtc_common",
546 "../rtc_base:checks",
547 "../rtc_base:rtc_base_approved",
548 ]
549 }
550
Jiawei Ou651b92e2018-06-29 22:46:44551 rtc_source_set("mock_peerconnectioninterface") {
552 testonly = true
553 sources = [
554 "test/mock_peerconnectioninterface.h",
555 ]
556
557 deps = [
558 ":libjingle_peerconnection_api",
559 "../test:test_support",
560 ]
561 }
562
Patrik Höglund4b9e6ba2017-12-19 09:32:11563 rtc_source_set("mock_rtp") {
564 testonly = true
565 sources = [
566 "test/mock_rtpreceiver.h",
567 "test/mock_rtpsender.h",
568 ]
569
570 deps = [
571 ":libjingle_peerconnection_api",
572 "../test:test_support",
Patrik Höglund4b9e6ba2017-12-19 09:32:11573 ]
574 }
575
Jiawei Ou4206a0a2018-07-20 22:49:43576 rtc_source_set("mock_video_bitrate_allocator") {
577 testonly = true
578 sources = [
579 "test/mock_video_bitrate_allocator.h",
580 ]
581
582 deps = [
583 "../api/video:video_bitrate_allocator",
584 "../test:test_support",
585 ]
586 }
587
Jiawei Ouc2ebe212018-11-08 18:02:56588 rtc_source_set("mock_video_bitrate_allocator_factory") {
589 testonly = true
590 sources = [
591 "test/mock_video_bitrate_allocator_factory.h",
592 ]
593
594 deps = [
595 "../api/video:video_bitrate_allocator_factory",
596 "../test:test_support",
597 ]
598 }
599
Emircan Uysalerdbcac7f2017-10-31 06:10:12600 rtc_source_set("mock_video_codec_factory") {
601 testonly = true
602 sources = [
603 "test/mock_video_decoder_factory.h",
604 "test/mock_video_encoder_factory.h",
605 ]
606
Emircan Uysalerdbcac7f2017-10-31 06:10:12607 deps = [
Mirko Bonadei34814c72018-01-11 09:13:56608 "../api/video_codecs:video_codecs_api",
Emircan Uysalerdbcac7f2017-10-31 06:10:12609 "../test:test_support",
Emircan Uysalerdbcac7f2017-10-31 06:10:12610 ]
611 }
612
Erik Språngc84cd952018-10-15 09:55:13613 rtc_source_set("mock_video_decoder") {
614 visibility = [ "*" ]
615
616 testonly = true
617 sources = [
618 "test/mock_video_decoder.cc",
619 "test/mock_video_decoder.h",
620 ]
621
622 deps = [
623 "../api/video_codecs:video_codecs_api",
624 "../test:test_support",
625 ]
626 }
627
Erik Språng6af1c922018-10-12 08:01:30628 rtc_source_set("mock_video_encoder") {
Erik Språngc84cd952018-10-15 09:55:13629 visibility = [ "*" ]
630
Erik Språng6af1c922018-10-12 08:01:30631 testonly = true
632 sources = [
633 "test/mock_video_encoder.cc",
634 "test/mock_video_encoder.h",
635 ]
636
637 deps = [
638 "../api/video_codecs:video_codecs_api",
639 "../test:test_support",
640 ]
641 }
642
Anton Sukhanov7940da02018-10-10 17:34:49643 rtc_source_set("fake_media_transport") {
644 testonly = true
645
646 sources = [
647 "test/fake_media_transport.h",
648 ]
649
650 deps = [
651 ":libjingle_peerconnection_api",
652 "../rtc_base:checks",
Yves Gerey3e707812018-11-28 15:47:49653 "//third_party/abseil-cpp/absl/memory",
Anton Sukhanov7940da02018-10-10 17:34:49654 ]
655 }
Niels Möller2e47f7c2018-10-16 08:41:42656
657 rtc_source_set("loopback_media_transport") {
658 testonly = true
659
660 sources = [
Niels Möllere0446cb2018-11-30 08:35:52661 "test/loopback_media_transport.cc",
Niels Möller2e47f7c2018-10-16 08:41:42662 "test/loopback_media_transport.h",
663 ]
664
665 deps = [
666 ":libjingle_peerconnection_api",
667 "../rtc_base:checks",
Bjorn Mellem273d0292018-11-01 23:42:44668 "../rtc_base:rtc_base",
Niels Möllere0446cb2018-11-30 08:35:52669 "//third_party/abseil-cpp/absl/memory",
Niels Möller2e47f7c2018-10-16 08:41:42670 ]
671 }
672
673 rtc_source_set("rtc_api_unittests") {
674 testonly = true
675
676 sources = [
677 "array_view_unittest.cc",
Steve Anton10542f22019-01-11 17:11:00678 "rtc_error_unittest.cc",
679 "rtp_parameters_unittest.cc",
Niels Möller2e47f7c2018-10-16 08:41:42680 "test/loopback_media_transport_unittest.cc",
681 ]
682
Niels Möller2e47f7c2018-10-16 08:41:42683 deps = [
684 ":array_view",
685 ":libjingle_peerconnection_api",
686 ":loopback_media_transport",
Niels Möller2e47f7c2018-10-16 08:41:42687 "../rtc_base:checks",
Mirko Bonadeie3abb812018-11-23 12:15:08688 "../rtc_base:gunit_helpers",
Niels Möller2e47f7c2018-10-16 08:41:42689 "../rtc_base:rtc_base_approved",
Niels Möller2e47f7c2018-10-16 08:41:42690 "../test:test_support",
Danil Chapovalov2684ab32019-02-26 09:18:08691 "task_queue:task_queue_default_factory_unittests",
Niels Möller2e47f7c2018-10-16 08:41:42692 "units:units_unittests",
693 ]
694 }
Harald Alvestrand3cc45d42019-03-14 04:42:04695
696 rtc_source_set("compile_all_headers") {
697 testonly = true
698
699 sources = [
700 "test/compile_all_headers.cc",
701 ]
702
703 deps = [
704 ":fake_frame_decryptor",
705 ":fake_frame_encryptor",
706 ":fake_media_transport",
707 ":loopback_media_transport",
708 ":mock_audio_mixer",
709 ":mock_frame_decryptor",
710 ":mock_frame_encryptor",
711 ":mock_peerconnectioninterface",
712 ":mock_rtp",
713 ":mock_video_bitrate_allocator",
714 ":mock_video_bitrate_allocator_factory",
715 ":mock_video_codec_factory",
716 ":mock_video_decoder",
717 ":mock_video_encoder",
718 ":rtc_api_unittests",
719 "units:units_unittests",
720 ]
721 }
kjellanderfd5b4e92016-06-13 19:08:33722}