blob: 7cc56b7460f0f848e33ac3c114e78b2685161cea [file] [log] [blame]
hjonaa32c3e2015-12-13 19:58:11 -08001# 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")
Sami Kalliomaki9c0c75b2016-06-29 14:55:00 +020010if (is_android) {
11 import("//build/config/android/config.gni")
12 import("//build/config/android/rules.gni")
13}
kjellanderc76dc952016-06-03 03:09:32 -070014
15group("api") {
Per Kjellandera7f2d842018-01-10 15:54:53 +000016 visibility = [ "*" ]
Dan Minor9c686132018-01-15 10:20:00 -050017 deps = []
18
19 if (!build_with_mozilla) {
20 deps += [ ":libjingle_peerconnection_api" ]
21 }
kjellanderc76dc952016-06-03 03:09:32 -070022}
23
ehmaldonado38a21322016-09-02 04:10:34 -070024rtc_source_set("call_api") {
Per Kjellandera7f2d842018-01-10 15:54:53 +000025 visibility = [ "*" ]
kjellandera69d9732016-08-31 07:33:05 -070026 sources = [
kjellandera69d9732016-08-31 07:33:05 -070027 "call/audio_sink.h",
kjellandera69d9732016-08-31 07:33:05 -070028 ]
kjellandera69d9732016-08-31 07:33:05 -070029}
30
Niels Möller8366e172018-02-14 12:20:13 +010031rtc_source_set("callfactory_api") {
32 visibility = [ "*" ]
33 sources = [
Steve Anton10542f22019-01-11 09:11:00 -080034 "call/call_factory_interface.h",
Niels Möller8366e172018-02-14 12:20:13 +010035 ]
36}
37
Danil Chapovalov5bf58062019-06-18 16:43:37 +020038if (!build_with_chromium) {
39 rtc_static_library("create_peerconnection_factory") {
40 visibility = [ "*" ]
Danil Chapovalov41300af2019-07-10 12:44:43 +020041 allow_poison = [ "default_task_queue" ]
Danil Chapovalov5bf58062019-06-18 16:43:37 +020042 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",
Danil Chapovalov5bf58062019-06-18 16:43:37 +020062 ]
63 }
Mirko Bonadei3cf8f3e2018-11-19 09:17:51 +010064}
65
Niels Möllerb8389522019-03-19 14:27:03 +010066rtc_source_set("rtp_headers") {
67 visibility = [ "*" ]
Niels Mölleref1052a2019-03-20 08:40:23 +010068 sources = [
69 "rtp_headers.cc",
70 "rtp_headers.h",
71 ]
72 deps = [
73 ":array_view",
74 "..:webrtc_common",
Sebastian Jansson3d61ab12019-06-14 13:35:51 +020075 "units:timestamp",
Chen Xing5d24b162019-06-10 12:59:38 +020076 "video:video_rtp_headers",
Niels Mölleref1052a2019-03-20 08:40:23 +010077 "//third_party/abseil-cpp/absl/types:optional",
78 ]
Niels Möllerb8389522019-03-19 14:27:03 +010079}
80
Chen Xingd2a66862019-06-03 14:53:42 +020081rtc_source_set("rtp_packet_info") {
82 visibility = [ "*" ]
83 sources = [
84 "rtp_packet_info.cc",
85 "rtp_packet_info.h",
86 "rtp_packet_infos.h",
87 ]
88 deps = [
89 ":array_view",
90 ":refcountedbase",
91 ":rtp_headers",
92 ":scoped_refptr",
93 "..:webrtc_common",
Chen Xinge08648d2019-08-05 16:29:13 +020094 "../rtc_base:deprecation",
Chen Xingd2a66862019-06-03 14:53:42 +020095 "../rtc_base:rtc_base_approved",
96 "//third_party/abseil-cpp/absl/types:optional",
97 ]
98}
99
Niels Möllerc1c62842019-09-17 10:16:05 +0200100rtc_source_set("media_stream_interface") {
101 visibility = [ "*" ]
Niels Möllere942b142019-09-17 14:30:41 +0200102 sources = [
103 "media_stream_interface.cc",
104 "media_stream_interface.h",
105 "notifier.h",
106 ]
107 deps = [
108 ":audio_options_api",
109 ":rtp_parameters",
110 ":scoped_refptr",
111 "../modules/audio_processing:audio_processing_statistics",
112 "../rtc_base:checks",
113 "../rtc_base:refcount",
114 "../rtc_base/system:rtc_export",
115 "video:video_frame",
116 "//third_party/abseil-cpp/absl/types:optional",
117 ]
Niels Möllerc1c62842019-09-17 10:16:05 +0200118}
119
ossu7bb87ee2017-01-23 04:56:25 -0800120rtc_static_library("libjingle_peerconnection_api") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000121 visibility = [ "*" ]
kjellanderc76dc952016-06-03 03:09:32 -0700122 cflags = []
123 sources = [
Steve Anton36b28db2017-10-26 11:27:17 -0700124 "candidate.cc",
Patrik Höglunde2d6a062017-10-05 14:53:33 +0200125 "candidate.h",
Anton Sukhanovc136b062019-05-14 14:53:42 -0700126 "congestion_control_interface.h",
Steve Anton10542f22019-01-11 09:11:00 -0800127 "crypto_params.h",
128 "data_channel_interface.cc",
129 "data_channel_interface.h",
Bjorn A Mellem05497f22019-08-01 10:48:20 -0700130 "data_channel_transport_interface.h",
Anton Sukhanovc136b062019-05-14 14:53:42 -0700131 "datagram_transport_interface.h",
Harald Alvestrand7061e512019-04-10 17:20:42 +0200132 "dtls_transport_interface.cc",
Steve Anton10542f22019-01-11 09:11:00 -0800133 "dtls_transport_interface.h",
134 "dtmf_sender_interface.h",
Harald Alvestrand98462622019-01-30 14:57:03 +0100135 "ice_transport_interface.h",
Steve Anton845bb732017-12-05 12:50:26 -0800136 "jsep.cc",
kjellanderc76dc952016-06-03 03:09:32 -0700137 "jsep.h",
Steve Anton10542f22019-01-11 09:11:00 -0800138 "jsep_ice_candidate.cc",
139 "jsep_ice_candidate.h",
140 "jsep_session_description.h",
Steve Anton10542f22019-01-11 09:11:00 -0800141 "media_stream_proxy.h",
142 "media_stream_track_proxy.h",
Anton Sukhanov4f08faa2019-05-21 11:12:57 -0700143 "media_transport_config.h",
Anton Sukhanovf60bd4b2018-09-05 13:41:46 -0400144 "media_transport_interface.h",
Steve Anton10542f22019-01-11 09:11:00 -0800145 "peer_connection_factory_proxy.h",
146 "peer_connection_interface.cc",
147 "peer_connection_interface.h",
148 "peer_connection_proxy.h",
Steve Antonf2737d22017-10-31 16:27:34 -0700149 "proxy.cc",
kjellanderc76dc952016-06-03 03:09:32 -0700150 "proxy.h",
Steve Anton10542f22019-01-11 09:11:00 -0800151 "rtp_receiver_interface.cc",
152 "rtp_receiver_interface.h",
153 "rtp_sender_interface.cc",
154 "rtp_sender_interface.h",
155 "rtp_transceiver_interface.cc",
156 "rtp_transceiver_interface.h",
Harald Alvestrandc85328f2019-02-28 07:51:00 +0100157 "sctp_transport_interface.cc",
158 "sctp_transport_interface.h",
Steve Anton10542f22019-01-11 09:11:00 -0800159 "set_remote_description_observer_interface.h",
160 "stats_types.cc",
161 "stats_types.h",
162 "turn_customizer.h",
163 "uma_metrics.h",
164 "video_track_source_proxy.h",
kjellanderc76dc952016-06-03 03:09:32 -0700165 ]
kjellanderc76dc952016-06-03 03:09:32 -0700166 deps = [
Patrik Höglund3e113432017-12-15 14:40:10 +0100167 ":array_view",
Niels Möllera6fe2612018-01-19 11:28:54 +0100168 ":audio_options_api",
Niels Möller8366e172018-02-14 12:20:13 +0100169 ":callfactory_api",
Ying Wang0dd1b0a2018-02-20 12:50:27 +0100170 ":fec_controller_api",
Niels Möller8366e172018-02-14 12:20:13 +0100171 ":libjingle_logging_api",
Niels Möllere942b142019-09-17 14:30:41 +0200172 ":media_stream_interface",
Ying Wang0810a7c2019-04-10 13:48:24 +0200173 ":network_state_predictor_api",
Patrik Höglund662e31f2019-09-05 14:35:04 +0200174 ":packet_socket_factory",
Mirko Bonadeifcfeefe2019-09-10 10:51:23 +0200175 ":rtc_error",
hbos74e1a4f2016-09-15 23:33:01 -0700176 ":rtc_stats_api",
Chen Xingd2a66862019-06-03 14:53:42 +0200177 ":rtp_packet_info",
Niels Möller184b4af2019-08-23 13:33:50 +0200178 ":rtp_parameters",
Mirko Bonadeid9708072019-01-25 20:26:48 +0100179 ":scoped_refptr",
Gustaf Ullberg2ae140a2018-02-16 13:43:49 +0100180 "audio:audio_mixer_api",
Patrik Höglundb5b5bce2017-11-13 10:19:58 +0100181 "audio_codecs:audio_codecs_api",
Mirko Bonadeieaaaf412019-09-13 14:42:15 +0200182 "crypto:frame_decryptor_interface",
183 "crypto:frame_encryptor_interface",
184 "crypto:options",
Danil Chapovalovb32f2c72019-05-22 13:39:25 +0200185 "rtc_event_log",
Danil Chapovalov9435c612019-04-01 10:33:16 +0200186 "task_queue",
Niels Möller0c4f7be2018-05-07 14:01:37 +0200187 "transport:bitrate_settings",
Niels Möller65f17ca2019-09-12 13:59:36 +0200188 "transport:datagram_transport_interface",
Sebastian Janssondfce03a2018-05-18 18:05:10 +0200189 "transport:network_control",
Niels Möllerec3b9ff2019-02-08 00:28:39 +0100190 "transport/media:audio_interfaces",
Niels Möller65f17ca2019-09-12 13:59:36 +0200191 "transport/media:media_transport_interface",
Niels Möller7e0e44f2019-02-12 14:04:11 +0100192 "transport/media:video_interfaces",
Niels Möllera8370302019-09-02 15:16:49 +0200193 "transport/rtp:rtp_source",
Piotr (Peter) Slatala48c54932019-01-28 06:50:38 -0800194 "units:data_rate",
Bjorn A Mellem57dc02a2019-05-30 09:15:37 -0700195 "units:timestamp",
Niels Möller3a742392018-10-08 11:13:58 +0200196 "video:encoded_image",
Niels Möllerc6ce9c52018-05-11 11:15:30 +0200197 "video:video_frame",
Chen Xing5d24b162019-06-10 12:59:38 +0200198 "video:video_rtp_headers",
Steve Anton2c9ebef2019-01-28 17:27:58 -0800199 "//third_party/abseil-cpp/absl/algorithm:container",
Steve Anton8e967df2019-07-30 18:07:40 -0700200 "//third_party/abseil-cpp/absl/memory",
Steve Anton6fe1fba2018-12-11 10:15:23 -0800201 "//third_party/abseil-cpp/absl/strings",
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +0200202 "//third_party/abseil-cpp/absl/types:optional",
Patrik Höglundb5b5bce2017-11-13 10:19:58 +0100203
204 # Basically, don't add stuff here. You might break sensitive downstream
205 # targets like pnacl. API should not depend on anything outside of this
206 # file, really. All these should arguably go away in time.
kjellander8a116632017-04-21 05:17:08 -0700207 "..:webrtc_common",
Niels Möller6daa2782018-01-23 10:37:42 +0100208 "../media:rtc_media_config",
Patrik Höglundb874a352017-11-27 14:32:41 +0100209 "../modules/audio_processing:audio_processing_statistics",
Artem Titov94b57c02019-03-21 13:35:10 +0100210 "../rtc_base",
Patrik Höglund3e113432017-12-15 14:40:10 +0100211 "../rtc_base:checks",
212 "../rtc_base:deprecation",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700213 "../rtc_base:rtc_base_approved",
Mirko Bonadei3b56ee72018-10-15 17:15:12 +0200214 "../rtc_base/system:rtc_export",
kjellanderc76dc952016-06-03 03:09:32 -0700215 ]
ossu7bb87ee2017-01-23 04:56:25 -0800216}
kjellanderc76dc952016-06-03 03:09:32 -0700217
Mirko Bonadei9bc98852019-09-10 10:05:26 +0200218rtc_source_set("rtc_error") {
219 visibility = [ "*" ]
Mirko Bonadeifcfeefe2019-09-10 10:51:23 +0200220 sources = [
221 "rtc_error.cc",
222 "rtc_error.h",
223 ]
224 deps = [
225 "../rtc_base:checks",
226 "../rtc_base:logging",
227 "../rtc_base:macromagic",
228 "../rtc_base/system:rtc_export",
229 "//third_party/abseil-cpp/absl/strings",
230 ]
Mirko Bonadei9bc98852019-09-10 10:05:26 +0200231}
232
Patrik Höglund662e31f2019-09-05 14:35:04 +0200233rtc_source_set("packet_socket_factory") {
234 visibility = [ "*" ]
235 sources = [
Patrik Höglund662e31f2019-09-05 14:35:04 +0200236 "async_resolver_factory.h",
237 "packet_socket_factory.h",
238 ]
239 deps = [
240 "../rtc_base:rtc_base",
241 "../rtc_base/system:rtc_export",
242 ]
243}
244
Mirko Bonadei85340ce2018-11-19 15:51:39 +0100245rtc_source_set("scoped_refptr") {
246 visibility = [ "*" ]
247 sources = [
248 "scoped_refptr.h",
249 ]
250}
251
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200252rtc_source_set("video_quality_test_fixture_api") {
253 visibility = [ "*" ]
254 testonly = true
255 sources = [
256 "test/video_quality_test_fixture.h",
257 ]
258 deps = [
Patrik Höglundd8f3c172018-09-26 14:39:17 +0200259 ":fec_controller_api",
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200260 ":libjingle_peerconnection_api",
Ying Wang0810a7c2019-04-10 13:48:24 +0200261 ":network_state_predictor_api",
Niels Möller6dcd4dc2019-08-26 10:45:28 +0200262 ":rtp_parameters",
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200263 ":simulated_network_api",
264 "../call:fake_network",
265 "../call:rtp_interfaces",
266 "../test:test_common",
267 "../test:video_test_common",
Mirko Bonadei738bfa72019-09-17 14:47:38 +0200268 "transport:bitrate_settings",
Sebastian Jansson1391ed22019-04-30 14:23:51 +0200269 "transport:network_control",
Niels Möller65f17ca2019-09-12 13:59:36 +0200270 "transport/media:media_transport_interface",
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200271 "video_codecs:video_codecs_api",
272 ]
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200273}
274
Artem Titovd57628f2019-03-22 12:34:25 +0100275rtc_source_set("video_quality_analyzer_api") {
276 visibility = [ "*" ]
277 testonly = true
278 sources = [
279 "test/video_quality_analyzer_interface.h",
280 ]
281
282 deps = [
283 ":stats_observer_interface",
284 "video:encoded_image",
285 "video:video_frame",
Chen Xing5d24b162019-06-10 12:59:38 +0200286 "video:video_rtp_headers",
Artem Titovd57628f2019-03-22 12:34:25 +0100287 "video_codecs:video_codecs_api",
Artem Titovd57628f2019-03-22 12:34:25 +0100288 "//third_party/abseil-cpp/absl/types:optional",
289 ]
290}
291
Mirko Bonadeif948eb62019-04-05 15:13:23 +0200292rtc_source_set("track_id_stream_label_map") {
293 visibility = [ "*" ]
294 sources = [
295 "test/track_id_stream_label_map.h",
296 ]
297}
298
Niels Möller184b4af2019-08-23 13:33:50 +0200299rtc_source_set("rtp_parameters") {
300 visibility = [ "*" ]
Niels Möller6dcd4dc2019-08-26 10:45:28 +0200301 sources = [
302 "media_types.cc",
303 "media_types.h",
304 "rtp_parameters.cc",
305 "rtp_parameters.h",
306 ]
307 deps = [
308 ":array_view",
309 "../rtc_base:checks",
310 "../rtc_base:stringutils",
311 "../rtc_base/system:rtc_export",
312 "//third_party/abseil-cpp/absl/types:optional",
313 ]
Niels Möller184b4af2019-08-23 13:33:50 +0200314}
315
Artem Titovd57628f2019-03-22 12:34:25 +0100316rtc_source_set("audio_quality_analyzer_api") {
317 visibility = [ "*" ]
318 testonly = true
319 sources = [
320 "test/audio_quality_analyzer_interface.h",
321 ]
322
323 deps = [
324 ":stats_observer_interface",
Mirko Bonadeif948eb62019-04-05 15:13:23 +0200325 ":track_id_stream_label_map",
Artem Titovd57628f2019-03-22 12:34:25 +0100326 ]
327}
328
329rtc_source_set("stats_observer_interface") {
330 visibility = [ "*" ]
331 testonly = true
332 sources = [
333 "test/stats_observer_interface.h",
334 ]
335
336 deps = [
Niels Möllerb4a61282019-08-29 12:16:56 +0200337 # For api/stats_types.h
Artem Titovd57628f2019-03-22 12:34:25 +0100338 ":libjingle_peerconnection_api",
Niels Möller6dcd4dc2019-08-26 10:45:28 +0200339 ":rtp_parameters",
Artem Titovd57628f2019-03-22 12:34:25 +0100340 ]
341}
342
343rtc_source_set("peer_connection_quality_test_fixture_api") {
344 visibility = [ "*" ]
345 testonly = true
346 sources = [
347 "test/peerconnection_quality_test_fixture.h",
348 ]
349
350 deps = [
351 ":audio_quality_analyzer_api",
352 ":callfactory_api",
353 ":fec_controller_api",
354 ":function_view",
355 ":libjingle_peerconnection_api",
Ying Wang0810a7c2019-04-10 13:48:24 +0200356 ":network_state_predictor_api",
Patrik Höglund7d003422019-09-17 12:16:35 +0200357 ":packet_socket_factory",
Artem Titovd57628f2019-03-22 12:34:25 +0100358 ":simulated_network_api",
Artem Titova8549212019-08-19 14:38:06 +0200359 ":stats_observer_interface",
Artem Titovd57628f2019-03-22 12:34:25 +0100360 ":video_quality_analyzer_api",
Artem Titovf65a89b2019-05-07 11:56:44 +0200361 "../media:rtc_media_base",
Artem Titovd57628f2019-03-22 12:34:25 +0100362 "../rtc_base:rtc_base",
Danil Chapovalov9305d112019-09-04 13:16:09 +0200363 "rtc_event_log",
Danil Chapovalov1a5fc902019-06-10 12:58:03 +0200364 "task_queue",
Artem Titovd57628f2019-03-22 12:34:25 +0100365 "transport:network_control",
Niels Möller65f17ca2019-09-12 13:59:36 +0200366 "transport/media:media_transport_interface",
Artem Titovd57628f2019-03-22 12:34:25 +0100367 "units:time_delta",
368 "video_codecs:video_codecs_api",
369 "//third_party/abseil-cpp/absl/memory",
370 "//third_party/abseil-cpp/absl/types:optional",
371 ]
372}
373
Patrik Höglundd8f3c172018-09-26 14:39:17 +0200374rtc_source_set("test_dependency_factory") {
375 visibility = [ "*" ]
376 testonly = true
377 sources = [
378 "test/test_dependency_factory.cc",
379 "test/test_dependency_factory.h",
380 ]
381 deps = [
382 ":video_quality_test_fixture_api",
Yves Gerey3e707812018-11-28 16:47:49 +0100383 "../rtc_base:checks",
Patrik Höglundd8f3c172018-09-26 14:39:17 +0200384 "../rtc_base:thread_checker",
385 ]
Patrik Höglundd8f3c172018-09-26 14:39:17 +0200386}
387
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200388if (rtc_include_tests) {
389 rtc_source_set("create_video_quality_test_fixture_api") {
390 visibility = [ "*" ]
391 testonly = true
392 sources = [
393 "test/create_video_quality_test_fixture.cc",
394 "test/create_video_quality_test_fixture.h",
395 ]
396 deps = [
397 ":fec_controller_api",
Ying Wang0810a7c2019-04-10 13:48:24 +0200398 ":network_state_predictor_api",
Mirko Bonadeid9708072019-01-25 20:26:48 +0100399 ":scoped_refptr",
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200400 ":video_quality_test_fixture_api",
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200401 "../video:video_quality_test",
402 ]
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200403 }
Artem Titov7bf8c7f2019-03-15 15:00:37 +0100404
Artem Titov8ea8dcb2019-03-26 13:38:02 +0100405 rtc_source_set("create_network_emulation_manager") {
Artem Titov7bf8c7f2019-03-15 15:00:37 +0100406 visibility = [ "*" ]
407 testonly = true
408 sources = [
409 "test/create_network_emulation_manager.cc",
410 "test/create_network_emulation_manager.h",
411 ]
412 deps = [
413 ":network_emulation_manager_api",
Artem Titov386802e2019-07-05 10:48:17 +0200414 "../test/network:emulated_network",
Artem Titov7bf8c7f2019-03-15 15:00:37 +0100415 ]
416 }
Artem Titovd57628f2019-03-22 12:34:25 +0100417
418 rtc_source_set("create_peerconnection_quality_test_fixture") {
419 visibility = [ "*" ]
420 testonly = true
421 sources = [
422 "test/create_peerconnection_quality_test_fixture.cc",
423 "test/create_peerconnection_quality_test_fixture.h",
424 ]
425
426 deps = [
427 ":audio_quality_analyzer_api",
428 ":peer_connection_quality_test_fixture_api",
429 ":video_quality_analyzer_api",
430 "../test/pc/e2e:peerconnection_quality_test",
Artem Titovd57628f2019-03-22 12:34:25 +0100431 ]
432 }
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200433}
434
Elad Alon80810732017-10-06 13:07:32 +0200435rtc_source_set("libjingle_logging_api") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000436 visibility = [ "*" ]
Elad Alon80810732017-10-06 13:07:32 +0200437 sources = [
Steve Anton10542f22019-01-11 09:11:00 -0800438 "rtc_event_log_output.h",
Elad Alon80810732017-10-06 13:07:32 +0200439 ]
440}
441
Niels Möllerd8b9ed72019-05-08 13:53:51 +0200442rtc_source_set("rtc_event_log_output_file") {
443 visibility = [ "*" ]
444 sources = [
445 "rtc_event_log_output_file.cc",
446 "rtc_event_log_output_file.h",
447 ]
448
449 deps = [
450 ":libjingle_logging_api",
Niels Möllerd8b9ed72019-05-08 13:53:51 +0200451 "../rtc_base:checks",
452 "../rtc_base:rtc_base_approved",
453 "../rtc_base/system:file_wrapper",
Danil Chapovalovb32f2c72019-05-22 13:39:25 +0200454 "rtc_event_log",
Niels Möllerd8b9ed72019-05-08 13:53:51 +0200455 ]
456}
457
hbos74e1a4f2016-09-15 23:33:01 -0700458rtc_source_set("rtc_stats_api") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000459 visibility = [ "*" ]
hbos74e1a4f2016-09-15 23:33:01 -0700460 cflags = []
461 sources = [
Steve Anton10542f22019-01-11 09:11:00 -0800462 "stats/rtc_stats.h",
463 "stats/rtc_stats_collector_callback.h",
464 "stats/rtc_stats_report.h",
hbos74e1a4f2016-09-15 23:33:01 -0700465 "stats/rtcstats_objects.h",
hbos74e1a4f2016-09-15 23:33:01 -0700466 ]
467
468 deps = [
Mirko Bonadeid9708072019-01-25 20:26:48 +0100469 ":scoped_refptr",
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100470 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700471 "../rtc_base:rtc_base_approved",
Mirko Bonadei3b56ee72018-10-15 17:15:12 +0200472 "../rtc_base/system:rtc_export",
hbos74e1a4f2016-09-15 23:33:01 -0700473 ]
474}
475
Niels Möllera6fe2612018-01-19 11:28:54 +0100476rtc_source_set("audio_options_api") {
477 visibility = [ "*" ]
478 sources = [
Paulina Hensman11b34f42018-04-09 14:24:52 +0200479 "audio_options.cc",
Niels Möllera6fe2612018-01-19 11:28:54 +0100480 "audio_options.h",
481 ]
482
483 deps = [
Yves Gerey3e707812018-11-28 16:47:49 +0100484 ":array_view",
Danil Chapovalov21652332018-08-31 10:29:07 +0200485 "../rtc_base:stringutils",
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +0200486 "//third_party/abseil-cpp/absl/types:optional",
Niels Möllera6fe2612018-01-19 11:28:54 +0100487 ]
488}
489
aleloia8eb7562016-11-28 07:02:13 -0800490rtc_source_set("transport_api") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000491 visibility = [ "*" ]
aleloia8eb7562016-11-28 07:02:13 -0800492 sources = [
Dino Radaković1807d572018-02-22 14:18:06 +0100493 "call/transport.cc",
aleloia8eb7562016-11-28 07:02:13 -0800494 "call/transport.h",
495 ]
496}
nisseb2250e52016-12-02 04:01:14 -0800497
Sebastian Jansson6736df12018-11-21 19:18:39 +0100498rtc_source_set("bitrate_allocation") {
499 visibility = [ "*" ]
500 sources = [
501 "call/bitrate_allocation.h",
502 ]
503 deps = [
504 "units:data_rate",
505 "units:time_delta",
506 ]
507}
508
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200509rtc_source_set("simulated_network_api") {
510 visibility = [ "*" ]
511 sources = [
512 "test/simulated_network.h",
513 ]
514 deps = [
Artem Titov94b57c02019-03-21 13:35:10 +0100515 "../rtc_base",
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200516 "../rtc_base:criticalsection",
Danil Chapovalov065a52a2018-07-09 10:58:54 +0200517 "//third_party/abseil-cpp/absl/types:optional",
Patrik Höglundb6b29e02018-06-21 16:58:01 +0200518 ]
519}
520
Artem Titov7bf8c7f2019-03-15 15:00:37 +0100521rtc_source_set("network_emulation_manager_api") {
522 visibility = [ "*" ]
523 sources = [
524 "test/network_emulation_manager.h",
525 ]
526 deps = [
527 ":simulated_network_api",
Artem Titov94b57c02019-03-21 13:35:10 +0100528 "../rtc_base",
Artem Titov806299e2019-04-12 12:17:19 +0200529 "units:data_rate",
530 "units:data_size",
531 "units:timestamp",
Artem Titov7bf8c7f2019-03-15 15:00:37 +0100532 ]
533}
534
Ying Wang3b790f32018-01-19 17:58:57 +0100535rtc_source_set("fec_controller_api") {
536 visibility = [ "*" ]
537 sources = [
538 "fec_controller.h",
Elad Alon8f01c4e2019-06-28 15:19:43 +0200539 "fec_controller_override.h",
Ying Wang3b790f32018-01-19 17:58:57 +0100540 ]
541
542 deps = [
Ying Wang0dd1b0a2018-02-20 12:50:27 +0100543 "../modules:module_fec_api",
Niels Möller8f7ce222019-03-21 15:43:58 +0100544 "video:video_frame_type",
Ying Wang3b790f32018-01-19 17:58:57 +0100545 ]
546}
547
Ying Wang0810a7c2019-04-10 13:48:24 +0200548rtc_source_set("network_state_predictor_api") {
549 visibility = [ "*" ]
550 sources = [
551 "network_state_predictor.h",
552 ]
553}
554
kwiberg529662a2017-09-04 05:43:17 -0700555rtc_source_set("array_view") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000556 visibility = [ "*" ]
kwiberg529662a2017-09-04 05:43:17 -0700557 sources = [
558 "array_view.h",
559 ]
560 deps = [
Patrik Höglunda8005cf2017-12-13 16:05:42 +0100561 "../rtc_base:checks",
562 "../rtc_base:type_traits",
kwiberg529662a2017-09-04 05:43:17 -0700563 ]
564}
565
Niels Möller9155e492017-10-23 11:22:30 +0200566rtc_source_set("refcountedbase") {
Per Kjellandera7f2d842018-01-10 15:54:53 +0000567 visibility = [ "*" ]
Niels Möller9155e492017-10-23 11:22:30 +0200568 sources = [
Steve Anton10542f22019-01-11 09:11:00 -0800569 "ref_counted_base.h",
Niels Möller9155e492017-10-23 11:22:30 +0200570 ]
571 deps = [
572 "../rtc_base:rtc_base_approved",
573 ]
574}
575
Harald Alvestrand98462622019-01-30 14:57:03 +0100576rtc_source_set("ice_transport_factory") {
577 visibility = [ "*" ]
578 sources = [
579 "ice_transport_factory.cc",
580 "ice_transport_factory.h",
581 ]
582 deps = [
583 ":libjingle_peerconnection_api",
Patrik Höglund7d003422019-09-17 12:16:35 +0200584 ":packet_socket_factory",
Harald Alvestrand98462622019-01-30 14:57:03 +0100585 ":scoped_refptr",
586 "../p2p:rtc_p2p",
Artem Titov94b57c02019-03-21 13:35:10 +0100587 "../rtc_base",
Mirko Bonadei66e76792019-04-02 11:33:59 +0200588 "../rtc_base/system:rtc_export",
Steve Anton6fdfec12019-07-01 14:07:33 -0700589 "rtc_event_log:rtc_event_log",
Harald Alvestrand98462622019-01-30 14:57:03 +0100590 ]
591}
592
Ivo Creusen55de08e2018-09-03 11:49:27 +0200593rtc_source_set("neteq_simulator_api") {
594 visibility = [ "*" ]
595 sources = [
596 "test/neteq_simulator.cc",
597 "test/neteq_simulator.h",
598 ]
599}
600
Artem Titov741daaf2019-03-21 14:37:36 +0100601rtc_source_set("function_view") {
602 visibility = [ "*" ]
603 sources = [
604 "function_view.h",
605 ]
606 deps = [
607 "../rtc_base:checks",
608 ]
609}
610
kjellanderfd5b4e92016-06-13 12:08:33 -0700611if (rtc_include_tests) {
Ivo Creusen2cb41052018-03-15 12:22:52 +0100612 if (rtc_enable_protobuf) {
613 rtc_source_set("audioproc_f_api") {
614 visibility = [ "*" ]
615 testonly = true
616 sources = [
617 "test/audioproc_float.cc",
618 "test/audioproc_float.h",
619 ]
620
621 deps = [
Artem Titov94b57c02019-03-21 13:35:10 +0100622 "../modules/audio_processing",
Alessio Bazzicab768e882018-11-07 14:29:54 +0000623 "../modules/audio_processing:api",
Ivo Creusen2cb41052018-03-15 12:22:52 +0100624 "../modules/audio_processing:audioproc_f_impl",
625 ]
626 }
Ivo Creusen55de08e2018-09-03 11:49:27 +0200627
628 rtc_source_set("neteq_simulator_factory") {
629 visibility = [ "*" ]
630 testonly = true
631 sources = [
632 "test/neteq_simulator_factory.cc",
633 "test/neteq_simulator_factory.h",
634 ]
635 deps = [
636 ":neteq_simulator_api",
637 "../modules/audio_coding:neteq_test_factory",
Ivo Creusenf81b0f12018-09-11 10:30:58 +0200638 "../rtc_base:checks",
Mirko Bonadei2ab97f62019-07-18 13:44:12 +0200639 "//third_party/abseil-cpp/absl/flags:flag",
640 "//third_party/abseil-cpp/absl/flags:parse",
Ivo Creusen5ec61562019-03-20 10:52:18 +0100641 "//third_party/abseil-cpp/absl/strings",
Ivo Creusen55de08e2018-09-03 11:49:27 +0200642 ]
643 }
Ivo Creusen2cb41052018-03-15 12:22:52 +0100644 }
645
Rasmus Brandt0cedc052018-05-31 12:53:00 +0200646 rtc_source_set("simulcast_test_fixture_api") {
647 visibility = [ "*" ]
648 testonly = true
649 sources = [
650 "test/simulcast_test_fixture.h",
651 ]
652 }
653
654 rtc_source_set("create_simulcast_test_fixture_api") {
655 visibility = [ "*" ]
656 testonly = true
657 sources = [
658 "test/create_simulcast_test_fixture.cc",
659 "test/create_simulcast_test_fixture.h",
660 ]
661 deps = [
662 ":simulcast_test_fixture_api",
663 "../modules/video_coding:simulcast_test_fixture_impl",
664 "../rtc_base:rtc_base_approved",
665 "video_codecs:video_codecs_api",
666 ]
Rasmus Brandt0cedc052018-05-31 12:53:00 +0200667 }
668
Kári Tristan Helgason9d96e922018-05-04 11:56:55 +0200669 rtc_source_set("videocodec_test_fixture_api") {
670 visibility = [ "*" ]
671 testonly = true
672 sources = [
673 "test/videocodec_test_fixture.h",
Kári Tristan Helgason169005d2018-05-22 13:34:14 +0200674 "test/videocodec_test_stats.cc",
675 "test/videocodec_test_stats.h",
Kári Tristan Helgason9d96e922018-05-04 11:56:55 +0200676 ]
677 deps = [
Kári Tristan Helgason169005d2018-05-22 13:34:14 +0200678 "..:webrtc_common",
679 "../modules/video_coding:video_codec_interface",
Jonas Olsson366a50c2018-09-06 13:41:30 +0200680 "../rtc_base:stringutils",
Niels Möller8f7ce222019-03-21 15:43:58 +0100681 "video:video_frame_type",
Kári Tristan Helgason9d96e922018-05-04 11:56:55 +0200682 "video_codecs:video_codecs_api",
683 ]
684 }
685
686 rtc_source_set("create_videocodec_test_fixture_api") {
687 visibility = [ "*" ]
688 testonly = true
689 sources = [
690 "test/create_videocodec_test_fixture.cc",
691 "test/create_videocodec_test_fixture.h",
692 ]
693 deps = [
694 ":videocodec_test_fixture_api",
695 "../modules/video_coding:video_codecs_test_framework",
696 "../modules/video_coding:videocodec_test_impl",
697 "../rtc_base:rtc_base_approved",
698 "video_codecs:video_codecs_api",
699 ]
Kári Tristan Helgason9d96e922018-05-04 11:56:55 +0200700 }
701
kjellander2f6af9c2017-03-02 22:26:23 -0800702 rtc_source_set("mock_audio_mixer") {
703 testonly = true
704 sources = [
705 "test/mock_audio_mixer.h",
706 ]
707
kjellander2f6af9c2017-03-02 22:26:23 -0800708 deps = [
jianjun.zhuc0247402017-07-11 06:20:45 -0700709 "../test:test_support",
Gustaf Ullberg2ae140a2018-02-16 13:43:49 +0100710 "audio:audio_mixer_api",
kjellander2f6af9c2017-03-02 22:26:23 -0800711 ]
712 }
713
Elad Alon45befc52019-07-02 11:20:09 +0200714 rtc_source_set("mock_fec_controller_override") {
715 testonly = true
716 sources = [
717 "test/mock_fec_controller_override.h",
718 ]
719 deps = [
720 ":fec_controller_api",
721 "../test:test_support",
722 ]
723 }
724
Benjamin Wright78410ad2018-10-25 09:52:57 -0700725 rtc_source_set("mock_frame_encryptor") {
726 testonly = true
727 sources = [
728 "test/mock_frame_encryptor.cc",
729 "test/mock_frame_encryptor.h",
730 ]
731 deps = [
Niels Möllerb4a61282019-08-29 12:16:56 +0200732 # For api/crypto/frame_encryptor_interface.h
Benjamin Wright78410ad2018-10-25 09:52:57 -0700733 ":libjingle_peerconnection_api",
734 "../test:test_support",
Mirko Bonadeieaaaf412019-09-13 14:42:15 +0200735 "crypto:frame_encryptor_interface",
Benjamin Wright78410ad2018-10-25 09:52:57 -0700736 ]
737 }
738
739 rtc_source_set("mock_frame_decryptor") {
740 testonly = true
741 sources = [
742 "test/mock_frame_decryptor.cc",
743 "test/mock_frame_decryptor.h",
744 ]
745 deps = [
746 ":libjingle_peerconnection_api",
747 "../test:test_support",
Mirko Bonadeieaaaf412019-09-13 14:42:15 +0200748 "crypto:frame_decryptor_interface",
Benjamin Wright78410ad2018-10-25 09:52:57 -0700749 ]
750 }
751
752 rtc_source_set("fake_frame_encryptor") {
753 testonly = true
754 sources = [
755 "test/fake_frame_encryptor.cc",
756 "test/fake_frame_encryptor.h",
757 ]
758 deps = [
759 ":array_view",
760 ":libjingle_peerconnection_api",
Niels Möller6dcd4dc2019-08-26 10:45:28 +0200761 ":rtp_parameters",
Benjamin Wright78410ad2018-10-25 09:52:57 -0700762 "..:webrtc_common",
763 "../rtc_base:checks",
764 "../rtc_base:rtc_base_approved",
Mirko Bonadeieaaaf412019-09-13 14:42:15 +0200765 "crypto:frame_encryptor_interface",
Benjamin Wright78410ad2018-10-25 09:52:57 -0700766 ]
767 }
768
769 rtc_source_set("fake_frame_decryptor") {
Benjamin Wright84583f62018-10-04 14:22:34 -0700770 testonly = true
771 sources = [
772 "test/fake_frame_decryptor.cc",
773 "test/fake_frame_decryptor.h",
Benjamin Wright84583f62018-10-04 14:22:34 -0700774 ]
775 deps = [
776 ":array_view",
777 ":libjingle_peerconnection_api",
Niels Möller6dcd4dc2019-08-26 10:45:28 +0200778 ":rtp_parameters",
Benjamin Wright84583f62018-10-04 14:22:34 -0700779 "..:webrtc_common",
780 "../rtc_base:checks",
781 "../rtc_base:rtc_base_approved",
Mirko Bonadeieaaaf412019-09-13 14:42:15 +0200782 "crypto:frame_decryptor_interface",
Benjamin Wright84583f62018-10-04 14:22:34 -0700783 ]
784 }
785
Niels Möllere78fd802019-09-13 14:45:55 +0200786 rtc_source_set("dummy_peer_connection") {
787 visibility = [ "*" ]
788 testonly = true
789 sources = [
790 "test/dummy_peer_connection.h",
791 ]
792
793 deps = [
794 ":libjingle_peerconnection_api",
795 ":rtc_error",
796 "../rtc_base:checks",
797 "../rtc_base:refcount",
798 ]
799 }
800
Jiawei Ou651b92e2018-06-29 15:46:44 -0700801 rtc_source_set("mock_peerconnectioninterface") {
802 testonly = true
803 sources = [
804 "test/mock_peerconnectioninterface.h",
805 ]
806
807 deps = [
808 ":libjingle_peerconnection_api",
809 "../test:test_support",
810 ]
811 }
812
Patrik Höglund4b9e6ba2017-12-19 10:32:11 +0100813 rtc_source_set("mock_rtp") {
814 testonly = true
815 sources = [
816 "test/mock_rtpreceiver.h",
817 "test/mock_rtpsender.h",
818 ]
819
820 deps = [
821 ":libjingle_peerconnection_api",
822 "../test:test_support",
Patrik Höglund4b9e6ba2017-12-19 10:32:11 +0100823 ]
824 }
825
Jiawei Ou4206a0a2018-07-20 15:49:43 -0700826 rtc_source_set("mock_video_bitrate_allocator") {
827 testonly = true
828 sources = [
829 "test/mock_video_bitrate_allocator.h",
830 ]
831
832 deps = [
833 "../api/video:video_bitrate_allocator",
834 "../test:test_support",
835 ]
836 }
837
Jiawei Ouc2ebe212018-11-08 10:02:56 -0800838 rtc_source_set("mock_video_bitrate_allocator_factory") {
839 testonly = true
840 sources = [
841 "test/mock_video_bitrate_allocator_factory.h",
842 ]
843
844 deps = [
845 "../api/video:video_bitrate_allocator_factory",
846 "../test:test_support",
847 ]
848 }
849
Emircan Uysalerdbcac7f2017-10-30 23:10:12 -0700850 rtc_source_set("mock_video_codec_factory") {
851 testonly = true
852 sources = [
853 "test/mock_video_decoder_factory.h",
854 "test/mock_video_encoder_factory.h",
855 ]
856
Emircan Uysalerdbcac7f2017-10-30 23:10:12 -0700857 deps = [
Mirko Bonadei34814c72018-01-11 10:13:56 +0100858 "../api/video_codecs:video_codecs_api",
Emircan Uysalerdbcac7f2017-10-30 23:10:12 -0700859 "../test:test_support",
Emircan Uysalerdbcac7f2017-10-30 23:10:12 -0700860 ]
861 }
862
Erik Språngc84cd952018-10-15 11:55:13 +0200863 rtc_source_set("mock_video_decoder") {
864 visibility = [ "*" ]
865
866 testonly = true
867 sources = [
868 "test/mock_video_decoder.cc",
869 "test/mock_video_decoder.h",
870 ]
871
872 deps = [
873 "../api/video_codecs:video_codecs_api",
874 "../test:test_support",
875 ]
876 }
877
Erik Språng6af1c922018-10-12 10:01:30 +0200878 rtc_source_set("mock_video_encoder") {
Erik Språngc84cd952018-10-15 11:55:13 +0200879 visibility = [ "*" ]
880
Erik Språng6af1c922018-10-12 10:01:30 +0200881 testonly = true
882 sources = [
883 "test/mock_video_encoder.cc",
884 "test/mock_video_encoder.h",
885 ]
886
887 deps = [
888 "../api/video_codecs:video_codecs_api",
889 "../test:test_support",
890 ]
891 }
892
Anton Sukhanov7940da02018-10-10 10:34:49 -0700893 rtc_source_set("fake_media_transport") {
894 testonly = true
895
896 sources = [
Bjorn A Mellemc85ebbe2019-06-07 10:28:06 -0700897 "test/fake_datagram_transport.h",
Anton Sukhanov7940da02018-10-10 10:34:49 -0700898 "test/fake_media_transport.h",
899 ]
900
901 deps = [
Anton Sukhanov7940da02018-10-10 10:34:49 -0700902 "../rtc_base:checks",
Niels Möller65f17ca2019-09-12 13:59:36 +0200903 "transport:datagram_transport_interface",
904 "transport/media:media_transport_interface",
Steve Antona59dcc32019-03-25 13:53:07 -0700905 "//third_party/abseil-cpp/absl/algorithm:container",
Anton Sukhanov7940da02018-10-10 10:34:49 -0700906 ]
907 }
Niels Möller2e47f7c2018-10-16 10:41:42 +0200908
909 rtc_source_set("loopback_media_transport") {
910 testonly = true
911
912 sources = [
Niels Möllere0446cb2018-11-30 09:35:52 +0100913 "test/loopback_media_transport.cc",
Niels Möller2e47f7c2018-10-16 10:41:42 +0200914 "test/loopback_media_transport.h",
915 ]
916
917 deps = [
Artem Titov94b57c02019-03-21 13:35:10 +0100918 "../rtc_base",
Niels Möller2e47f7c2018-10-16 10:41:42 +0200919 "../rtc_base:checks",
Niels Möller65f17ca2019-09-12 13:59:36 +0200920 "transport:datagram_transport_interface",
921 "transport/media:media_transport_interface",
Steve Antona59dcc32019-03-25 13:53:07 -0700922 "//third_party/abseil-cpp/absl/algorithm:container",
Niels Möller2e47f7c2018-10-16 10:41:42 +0200923 ]
924 }
925
926 rtc_source_set("rtc_api_unittests") {
927 testonly = true
928
929 sources = [
930 "array_view_unittest.cc",
Artem Titov741daaf2019-03-21 14:37:36 +0100931 "function_view_unittest.cc",
Steve Anton10542f22019-01-11 09:11:00 -0800932 "rtc_error_unittest.cc",
Niels Möllerd8b9ed72019-05-08 13:53:51 +0200933 "rtc_event_log_output_file_unittest.cc",
Chen Xingd2a66862019-06-03 14:53:42 +0200934 "rtp_packet_info_unittest.cc",
935 "rtp_packet_infos_unittest.cc",
Steve Anton10542f22019-01-11 09:11:00 -0800936 "rtp_parameters_unittest.cc",
Niels Möller2e47f7c2018-10-16 10:41:42 +0200937 "test/loopback_media_transport_unittest.cc",
938 ]
939
Niels Möller2e47f7c2018-10-16 10:41:42 +0200940 deps = [
941 ":array_view",
Artem Titov741daaf2019-03-21 14:37:36 +0100942 ":function_view",
Niels Möller2e47f7c2018-10-16 10:41:42 +0200943 ":libjingle_peerconnection_api",
944 ":loopback_media_transport",
Mirko Bonadeifcfeefe2019-09-10 10:51:23 +0200945 ":rtc_error",
Niels Möllerd8b9ed72019-05-08 13:53:51 +0200946 ":rtc_event_log_output_file",
Chen Xingd2a66862019-06-03 14:53:42 +0200947 ":rtp_packet_info",
Niels Möller6dcd4dc2019-08-26 10:45:28 +0200948 ":rtp_parameters",
Niels Möller2e47f7c2018-10-16 10:41:42 +0200949 "../rtc_base:checks",
Mirko Bonadeie3abb812018-11-23 13:15:08 +0100950 "../rtc_base:gunit_helpers",
Niels Möller2e47f7c2018-10-16 10:41:42 +0200951 "../rtc_base:rtc_base_approved",
Niels Möllerd8b9ed72019-05-08 13:53:51 +0200952 "../test:fileutils",
Niels Möller2e47f7c2018-10-16 10:41:42 +0200953 "../test:test_support",
Danil Chapovalov2684ab32019-02-26 10:18:08 +0100954 "task_queue:task_queue_default_factory_unittests",
Niels Möller2e47f7c2018-10-16 10:41:42 +0200955 "units:units_unittests",
Danil Chapovalovb703db92019-04-08 16:59:28 +0200956 "video:video_unittests",
Niels Möller2e47f7c2018-10-16 10:41:42 +0200957 ]
958 }
Harald Alvestrand3cc45d42019-03-14 05:42:04 +0100959
960 rtc_source_set("compile_all_headers") {
961 testonly = true
962
963 sources = [
964 "test/compile_all_headers.cc",
965 ]
966
967 deps = [
968 ":fake_frame_decryptor",
969 ":fake_frame_encryptor",
970 ":fake_media_transport",
971 ":loopback_media_transport",
972 ":mock_audio_mixer",
973 ":mock_frame_decryptor",
974 ":mock_frame_encryptor",
975 ":mock_peerconnectioninterface",
976 ":mock_rtp",
977 ":mock_video_bitrate_allocator",
978 ":mock_video_bitrate_allocator_factory",
979 ":mock_video_codec_factory",
980 ":mock_video_decoder",
981 ":mock_video_encoder",
982 ":rtc_api_unittests",
983 "units:units_unittests",
984 ]
985 }
kjellanderfd5b4e92016-06-13 12:08:33 -0700986}