blob: babc260160e5abc092176401053497da2bf5f7f3 [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 ]
29
kjellandera69d9732016-08-31 14:33:0530 deps = [
31 # TODO(kjellander): Add remaining dependencies when webrtc:4243 is done.
aleloia8eb7562016-11-28 15:02:1332 ":transport_api",
kjellandera69d9732016-08-31 14:33:0533 "..:webrtc_common",
ehmaldonadof6a861a2017-07-19 17:40:4734 "../rtc_base:rtc_base_approved",
Gustaf Ullberg2ae140a2018-02-16 12:43:4935 "audio:audio_mixer_api",
kwiberg087bd342017-02-10 16:15:4436 "audio_codecs:audio_codecs_api",
kjellandera69d9732016-08-31 14:33:0537 ]
38}
39
Niels Möller8366e172018-02-14 11:20:1340rtc_source_set("callfactory_api") {
41 visibility = [ "*" ]
42 sources = [
43 "call/callfactoryinterface.h",
44 ]
45}
46
ossu7bb87ee2017-01-23 12:56:2547rtc_static_library("libjingle_peerconnection_api") {
Per Kjellandera7f2d842018-01-10 15:54:5348 visibility = [ "*" ]
kjellanderc76dc952016-06-03 10:09:3249 cflags = []
50 sources = [
Zach Steine20867f2018-08-02 20:20:1551 "asyncresolverfactory.h",
Patrik Höglundb6b29e02018-06-21 14:58:0152 "bitrate_constraints.h",
Steve Anton36b28db2017-10-26 18:27:1753 "candidate.cc",
Patrik Höglunde2d6a062017-10-05 12:53:3354 "candidate.h",
Benjamin Wrighta54daf12018-10-11 22:33:1755 "crypto/cryptooptions.cc",
56 "crypto/cryptooptions.h",
Benjamin Wrightea086912018-08-29 20:06:1557 "crypto/framedecryptorinterface.h",
58 "crypto/frameencryptorinterface.h",
Patrik Höglund7aee3d52017-11-15 12:15:1759 "cryptoparams.h",
Mirko Bonadei79eb4dd2018-07-19 08:39:3060 "datachannelinterface.cc",
kjellanderc76dc952016-06-03 10:09:3261 "datachannelinterface.h",
kjellanderc76dc952016-06-03 10:09:3262 "dtmfsenderinterface.h",
Steve Anton845bb732017-12-05 20:50:2663 "jsep.cc",
kjellanderc76dc952016-06-03 10:09:3264 "jsep.h",
Mirko Bonadei2ffed6d2018-07-20 09:09:3265 "jsepicecandidate.cc",
kjellanderc76dc952016-06-03 10:09:3266 "jsepicecandidate.h",
kjellanderc76dc952016-06-03 10:09:3267 "jsepsessiondescription.h",
Niels Möller3a742392018-10-08 09:13:5868 "media_transport_interface.cc",
Anton Sukhanovf60bd4b2018-09-05 17:41:4669 "media_transport_interface.h",
kjellanderc76dc952016-06-03 10:09:3270 "mediaconstraintsinterface.cc",
71 "mediaconstraintsinterface.h",
ossu7bb87ee2017-01-23 12:56:2572 "mediastreaminterface.cc",
Patrik Höglund825249f2018-01-09 09:38:2173 "mediastreaminterface.h",
kjellanderc76dc952016-06-03 10:09:3274 "mediastreamproxy.h",
kjellanderc76dc952016-06-03 10:09:3275 "mediastreamtrackproxy.h",
ossu7bb87ee2017-01-23 12:56:2576 "mediatypes.cc",
77 "mediatypes.h",
kjellanderc76dc952016-06-03 10:09:3278 "notifier.h",
kjellanderc76dc952016-06-03 10:09:3279 "peerconnectionfactoryproxy.h",
Mirko Bonadei79eb4dd2018-07-19 08:39:3080 "peerconnectioninterface.cc",
Niels Möller8366e172018-02-14 11:20:1381 "peerconnectioninterface.h",
kjellanderc76dc952016-06-03 10:09:3282 "peerconnectionproxy.h",
Steve Antonf2737d22017-10-31 23:27:3483 "proxy.cc",
kjellanderc76dc952016-06-03 10:09:3284 "proxy.h",
deadbeef6038e972017-02-17 07:31:3385 "rtcerror.cc",
86 "rtcerror.h",
Patrik Höglund3e113432017-12-15 13:40:1087 "rtp_headers.cc",
88 "rtp_headers.h",
Stefan Holmer1acbd682017-09-01 13:29:2889 "rtpparameters.cc",
kjellanderc76dc952016-06-03 10:09:3290 "rtpparameters.h",
Danil Chapovalov2a5ce2b2018-02-07 08:38:3191 "rtpreceiverinterface.cc",
kjellanderc76dc952016-06-03 10:09:3292 "rtpreceiverinterface.h",
Benjamin Wrightd81ac952018-08-30 00:02:1093 "rtpsenderinterface.cc",
kjellanderc76dc952016-06-03 10:09:3294 "rtpsenderinterface.h",
Mirko Bonadei79eb4dd2018-07-19 08:39:3095 "rtptransceiverinterface.cc",
Steve Anton6e634bf2017-11-13 18:44:5396 "rtptransceiverinterface.h",
Henrik Boström31638672017-11-23 16:48:3297 "setremotedescriptionobserverinterface.h",
kjellanderc76dc952016-06-03 10:09:3298 "statstypes.cc",
99 "statstypes.h",
Jonas Orelandbdcee282017-10-10 12:01:40100 "turncustomizer.h",
ossu7bb87ee2017-01-23 12:56:25101 "umametrics.h",
kjellanderc76dc952016-06-03 10:09:32102 "videosourceproxy.h",
kjellanderc76dc952016-06-03 10:09:32103 ]
kjellanderc76dc952016-06-03 10:09:32104 deps = [
Patrik Höglund3e113432017-12-15 13:40:10105 ":array_view",
Niels Möllera6fe2612018-01-19 10:28:54106 ":audio_options_api",
Niels Möller8366e172018-02-14 11:20:13107 ":callfactory_api",
Ying Wang0dd1b0a2018-02-20 11:50:27108 ":fec_controller_api",
Niels Möller8366e172018-02-14 11:20:13109 ":libjingle_logging_api",
hbos74e1a4f2016-09-16 06:33:01110 ":rtc_stats_api",
Gustaf Ullberg2ae140a2018-02-16 12:43:49111 "audio:audio_mixer_api",
Patrik Höglundb5b5bce2017-11-13 09:19:58112 "audio_codecs:audio_codecs_api",
Niels Möller0c4f7be2018-05-07 12:01:37113 "transport:bitrate_settings",
Sebastian Janssondfce03a2018-05-18 16:05:10114 "transport:network_control",
Niels Möller3a742392018-10-08 09:13:58115 "video:encoded_image",
Niels Möllerc6ce9c52018-05-11 09:15:30116 "video:video_frame",
Danil Chapovalov0bc58cf2018-06-21 11:32:56117 "//third_party/abseil-cpp/absl/types:optional",
Patrik Höglundb5b5bce2017-11-13 09:19:58118
119 # Basically, don't add stuff here. You might break sensitive downstream
120 # targets like pnacl. API should not depend on anything outside of this
121 # file, really. All these should arguably go away in time.
kjellander8a116632017-04-21 12:17:08122 "..:webrtc_common",
Niels Möller8366e172018-02-14 11:20:13123 "../logging:rtc_event_log_api",
Niels Möller6daa2782018-01-23 09:37:42124 "../media:rtc_media_config",
Patrik Höglundb874a352017-11-27 13:32:41125 "../modules/audio_processing:audio_processing_statistics",
Patrik Höglund3e113432017-12-15 13:40:10126 "../rtc_base:checks",
127 "../rtc_base:deprecation",
ehmaldonadof6a861a2017-07-19 17:40:47128 "../rtc_base:rtc_base",
129 "../rtc_base:rtc_base_approved",
Patrik Höglund3e113432017-12-15 13:40:10130 "../rtc_base:stringutils",
Mirko Bonadei3b56ee72018-10-15 15:15:12131 "../rtc_base/system:rtc_export",
kjellanderc76dc952016-06-03 10:09:32132 ]
Niels Möller8366e172018-02-14 11:20:13133
kjellander8a116632017-04-21 12:17:08134 if (is_nacl) {
Patrik Höglund30bd03b2017-12-19 10:45:31135 # This is needed by .h files included from rtc_base.
kjellander8a116632017-04-21 12:17:08136 deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
137 }
ossu7bb87ee2017-01-23 12:56:25138}
kjellanderc76dc952016-06-03 10:09:32139
Patrik Höglundb6b29e02018-06-21 14:58:01140rtc_source_set("video_quality_test_fixture_api") {
141 visibility = [ "*" ]
142 testonly = true
143 sources = [
144 "test/video_quality_test_fixture.h",
145 ]
146 deps = [
Patrik Höglundd8f3c172018-09-26 12:39:17147 ":fec_controller_api",
Patrik Höglundb6b29e02018-06-21 14:58:01148 ":libjingle_peerconnection_api",
149 ":simulated_network_api",
150 "../call:fake_network",
151 "../call:rtp_interfaces",
152 "../test:test_common",
153 "../test:video_test_common",
154 "video_codecs:video_codecs_api",
155 ]
156 if (!build_with_chromium && is_clang) {
157 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
158 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
159 }
160}
161
Patrik Höglundd8f3c172018-09-26 12:39:17162rtc_source_set("test_dependency_factory") {
163 visibility = [ "*" ]
164 testonly = true
165 sources = [
166 "test/test_dependency_factory.cc",
167 "test/test_dependency_factory.h",
168 ]
169 deps = [
170 ":video_quality_test_fixture_api",
171 "../rtc_base:thread_checker",
172 ]
173 if (!build_with_chromium && is_clang) {
174 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
175 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
176 }
177}
178
Patrik Höglundb6b29e02018-06-21 14:58:01179if (rtc_include_tests) {
180 rtc_source_set("create_video_quality_test_fixture_api") {
181 visibility = [ "*" ]
182 testonly = true
183 sources = [
184 "test/create_video_quality_test_fixture.cc",
185 "test/create_video_quality_test_fixture.h",
186 ]
187 deps = [
188 ":fec_controller_api",
189 ":video_quality_test_fixture_api",
190 "../rtc_base:ptr_util",
191 "../video:video_quality_test",
Karl Wiberg918f50c2018-07-05 09:40:33192 "//third_party/abseil-cpp/absl/memory",
Patrik Höglundb6b29e02018-06-21 14:58:01193 ]
194 if (!build_with_chromium && is_clang) {
195 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
196 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
197 }
198 }
199}
200
Elad Alon80810732017-10-06 11:07:32201rtc_source_set("libjingle_logging_api") {
Per Kjellandera7f2d842018-01-10 15:54:53202 visibility = [ "*" ]
Elad Alon80810732017-10-06 11:07:32203 sources = [
204 "rtceventlogoutput.h",
205 ]
206}
207
deadbeefe814a0d2017-02-26 02:15:09208rtc_source_set("ortc_api") {
Per Kjellandera7f2d842018-01-10 15:54:53209 visibility = [ "*" ]
deadbeefe814a0d2017-02-26 02:15:09210 sources = [
zhihuang55adc0e2017-03-11 02:33:45211 "ortc/mediadescription.cc",
212 "ortc/mediadescription.h",
deadbeefe814a0d2017-02-26 02:15:09213 "ortc/ortcfactoryinterface.h",
214 "ortc/ortcrtpreceiverinterface.h",
215 "ortc/ortcrtpsenderinterface.h",
216 "ortc/packettransportinterface.h",
217 "ortc/rtptransportcontrollerinterface.h",
218 "ortc/rtptransportinterface.h",
zhihuang55adc0e2017-03-11 02:33:45219 "ortc/sessiondescription.cc",
220 "ortc/sessiondescription.h",
zhihuangd3501ad2017-03-03 22:39:06221 "ortc/srtptransportinterface.h",
deadbeefe814a0d2017-02-26 02:15:09222 "ortc/udptransportinterface.h",
223 ]
224
225 # For mediastreaminterface.h, etc.
226 # TODO(deadbeef): Create a separate target for the common things ORTC and
227 # PeerConnection code shares, so that ortc_api can depend on that instead of
228 # libjingle_peerconnection_api.
Patrik Höglund7aee3d52017-11-15 12:15:17229 deps = [
deadbeefe814a0d2017-02-26 02:15:09230 ":libjingle_peerconnection_api",
Patrik Höglund7aee3d52017-11-15 12:15:17231 "..:webrtc_common",
232 "../rtc_base:rtc_base",
Danil Chapovalov0bc58cf2018-06-21 11:32:56233 "//third_party/abseil-cpp/absl/types:optional",
deadbeefe814a0d2017-02-26 02:15:09234 ]
zhihuang55adc0e2017-03-11 02:33:45235 if (!build_with_chromium && is_clang) {
236 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
237 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
238 }
deadbeefe814a0d2017-02-26 02:15:09239}
240
hbos74e1a4f2016-09-16 06:33:01241rtc_source_set("rtc_stats_api") {
Per Kjellandera7f2d842018-01-10 15:54:53242 visibility = [ "*" ]
hbos74e1a4f2016-09-16 06:33:01243 cflags = []
244 sources = [
245 "stats/rtcstats.h",
246 "stats/rtcstats_objects.h",
ossu7bb87ee2017-01-23 12:56:25247 "stats/rtcstatscollectorcallback.h",
hbos74e1a4f2016-09-16 06:33:01248 "stats/rtcstatsreport.h",
249 ]
250
251 deps = [
Patrik Höglunda8005cf2017-12-13 15:05:42252 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 17:40:47253 "../rtc_base:rtc_base_approved",
Mirko Bonadei3b56ee72018-10-15 15:15:12254 "../rtc_base/system:rtc_export",
hbos74e1a4f2016-09-16 06:33:01255 ]
256}
257
Niels Möllera6fe2612018-01-19 10:28:54258rtc_source_set("audio_options_api") {
259 visibility = [ "*" ]
260 sources = [
Paulina Hensman11b34f42018-04-09 12:24:52261 "audio_options.cc",
Niels Möllera6fe2612018-01-19 10:28:54262 "audio_options.h",
263 ]
264
265 deps = [
Danil Chapovalov21652332018-08-31 08:29:07266 "../rtc_base:stringutils",
Danil Chapovalov0bc58cf2018-06-21 11:32:56267 "//third_party/abseil-cpp/absl/types:optional",
Niels Möllera6fe2612018-01-19 10:28:54268 ]
269}
270
aleloia8eb7562016-11-28 15:02:13271rtc_source_set("transport_api") {
Per Kjellandera7f2d842018-01-10 15:54:53272 visibility = [ "*" ]
aleloia8eb7562016-11-28 15:02:13273 sources = [
Dino Radaković1807d572018-02-22 13:18:06274 "call/transport.cc",
aleloia8eb7562016-11-28 15:02:13275 "call/transport.h",
276 ]
277}
nisseb2250e52016-12-02 12:01:14278
Patrik Höglundb6b29e02018-06-21 14:58:01279rtc_source_set("simulated_network_api") {
280 visibility = [ "*" ]
281 sources = [
282 "test/simulated_network.h",
283 ]
284 deps = [
Patrik Höglundb6b29e02018-06-21 14:58:01285 "../rtc_base:criticalsection",
286 "../rtc_base:rtc_base",
Danil Chapovalov065a52a2018-07-09 08:58:54287 "//third_party/abseil-cpp/absl/types:optional",
Patrik Höglundb6b29e02018-06-21 14:58:01288 ]
289}
290
Ying Wang3b790f32018-01-19 16:58:57291rtc_source_set("fec_controller_api") {
292 visibility = [ "*" ]
293 sources = [
294 "fec_controller.h",
295 ]
296
297 deps = [
Ying Wang0dd1b0a2018-02-20 11:50:27298 "..:webrtc_common",
299 "../modules:module_fec_api",
Ying Wang3b790f32018-01-19 16:58:57300 ]
301}
302
kwiberg529662a2017-09-04 12:43:17303rtc_source_set("array_view") {
Per Kjellandera7f2d842018-01-10 15:54:53304 visibility = [ "*" ]
kwiberg529662a2017-09-04 12:43:17305 sources = [
306 "array_view.h",
307 ]
308 deps = [
Patrik Höglunda8005cf2017-12-13 15:05:42309 "../rtc_base:checks",
310 "../rtc_base:type_traits",
kwiberg529662a2017-09-04 12:43:17311 ]
312}
313
Niels Möller9155e492017-10-23 09:22:30314rtc_source_set("refcountedbase") {
Per Kjellandera7f2d842018-01-10 15:54:53315 visibility = [ "*" ]
Niels Möller9155e492017-10-23 09:22:30316 sources = [
317 "refcountedbase.h",
318 ]
319 deps = [
320 "../rtc_base:rtc_base_approved",
321 ]
322}
323
kjellander1993b1d2017-03-06 08:29:21324rtc_source_set("libjingle_peerconnection_test_api") {
Per Kjellandera7f2d842018-01-10 15:54:53325 visibility = [ "*" ]
kjellander1993b1d2017-03-06 08:29:21326 testonly = true
327 sources = [
328 "test/fakeconstraints.h",
329 ]
330
kjellander1993b1d2017-03-06 08:29:21331 deps = [
Mirko Bonadei34814c72018-01-11 09:13:56332 ":libjingle_peerconnection_api",
ehmaldonadof6a861a2017-07-19 17:40:47333 "../rtc_base:rtc_base_approved",
kjellander1993b1d2017-03-06 08:29:21334 ]
335}
336
Ivo Creusen55de08e2018-09-03 09:49:27337rtc_source_set("neteq_simulator_api") {
338 visibility = [ "*" ]
339 sources = [
340 "test/neteq_simulator.cc",
341 "test/neteq_simulator.h",
342 ]
343}
344
kjellanderfd5b4e92016-06-13 19:08:33345if (rtc_include_tests) {
Ivo Creusen2cb41052018-03-15 11:22:52346 if (rtc_enable_protobuf) {
347 rtc_source_set("audioproc_f_api") {
348 visibility = [ "*" ]
349 testonly = true
350 sources = [
351 "test/audioproc_float.cc",
352 "test/audioproc_float.h",
353 ]
354
355 deps = [
356 "../modules/audio_processing:audio_processing",
357 "../modules/audio_processing:audioproc_f_impl",
358 ]
359 }
Ivo Creusen55de08e2018-09-03 09:49:27360
361 rtc_source_set("neteq_simulator_factory") {
362 visibility = [ "*" ]
363 testonly = true
364 sources = [
365 "test/neteq_simulator_factory.cc",
366 "test/neteq_simulator_factory.h",
367 ]
368 deps = [
369 ":neteq_simulator_api",
370 "../modules/audio_coding:neteq_test_factory",
Ivo Creusenf81b0f12018-09-11 08:30:58371 "../rtc_base:checks",
372 "../rtc_base:rtc_base_approved",
Ivo Creusen55de08e2018-09-03 09:49:27373 "//third_party/abseil-cpp/absl/memory",
374 ]
375 }
Ivo Creusen2cb41052018-03-15 11:22:52376 }
377
Rasmus Brandt0cedc052018-05-31 10:53:00378 rtc_source_set("simulcast_test_fixture_api") {
379 visibility = [ "*" ]
380 testonly = true
381 sources = [
382 "test/simulcast_test_fixture.h",
383 ]
384 }
385
386 rtc_source_set("create_simulcast_test_fixture_api") {
387 visibility = [ "*" ]
388 testonly = true
389 sources = [
390 "test/create_simulcast_test_fixture.cc",
391 "test/create_simulcast_test_fixture.h",
392 ]
393 deps = [
394 ":simulcast_test_fixture_api",
395 "../modules/video_coding:simulcast_test_fixture_impl",
396 "../rtc_base:rtc_base_approved",
397 "video_codecs:video_codecs_api",
Karl Wiberg918f50c2018-07-05 09:40:33398 "//third_party/abseil-cpp/absl/memory",
Rasmus Brandt0cedc052018-05-31 10:53:00399 ]
400 if (!build_with_chromium && is_clang) {
401 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
402 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
403 }
404 }
405
Kári Tristan Helgason9d96e922018-05-04 09:56:55406 rtc_source_set("videocodec_test_fixture_api") {
407 visibility = [ "*" ]
408 testonly = true
409 sources = [
410 "test/videocodec_test_fixture.h",
Kári Tristan Helgason169005d2018-05-22 11:34:14411 "test/videocodec_test_stats.cc",
412 "test/videocodec_test_stats.h",
Kári Tristan Helgason9d96e922018-05-04 09:56:55413 ]
414 deps = [
Kári Tristan Helgason169005d2018-05-22 11:34:14415 "..:webrtc_common",
416 "../modules/video_coding:video_codec_interface",
Jonas Olsson366a50c2018-09-06 11:41:30417 "../rtc_base:stringutils",
Kári Tristan Helgason9d96e922018-05-04 09:56:55418 "video_codecs:video_codecs_api",
419 ]
420 }
421
422 rtc_source_set("create_videocodec_test_fixture_api") {
423 visibility = [ "*" ]
424 testonly = true
425 sources = [
426 "test/create_videocodec_test_fixture.cc",
427 "test/create_videocodec_test_fixture.h",
428 ]
429 deps = [
430 ":videocodec_test_fixture_api",
431 "../modules/video_coding:video_codecs_test_framework",
432 "../modules/video_coding:videocodec_test_impl",
433 "../rtc_base:rtc_base_approved",
434 "video_codecs:video_codecs_api",
Karl Wiberg918f50c2018-07-05 09:40:33435 "//third_party/abseil-cpp/absl/memory",
Kári Tristan Helgason9d96e922018-05-04 09:56:55436 ]
437 if (!build_with_chromium && is_clang) {
438 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
439 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
440 }
441 }
442
kjellander2f6af9c2017-03-03 06:26:23443 rtc_source_set("mock_audio_mixer") {
444 testonly = true
445 sources = [
446 "test/mock_audio_mixer.h",
447 ]
448
kjellander2f6af9c2017-03-03 06:26:23449 deps = [
jianjun.zhuc0247402017-07-11 13:20:45450 "../test:test_support",
Gustaf Ullberg2ae140a2018-02-16 12:43:49451 "audio:audio_mixer_api",
kjellander2f6af9c2017-03-03 06:26:23452 ]
453 }
454
Benjamin Wright84583f62018-10-04 21:22:34455 rtc_source_set("fake_frame_crypto") {
456 testonly = true
457 sources = [
458 "test/fake_frame_decryptor.cc",
459 "test/fake_frame_decryptor.h",
460 "test/fake_frame_encryptor.cc",
461 "test/fake_frame_encryptor.h",
462 ]
463 deps = [
464 ":array_view",
465 ":libjingle_peerconnection_api",
466 "..:webrtc_common",
467 "../rtc_base:checks",
468 "../rtc_base:rtc_base_approved",
469 ]
470 }
471
Jiawei Ou651b92e2018-06-29 22:46:44472 rtc_source_set("mock_peerconnectioninterface") {
473 testonly = true
474 sources = [
475 "test/mock_peerconnectioninterface.h",
476 ]
477
478 deps = [
479 ":libjingle_peerconnection_api",
480 "../test:test_support",
481 ]
482 }
483
Patrik Höglund4b9e6ba2017-12-19 09:32:11484 rtc_source_set("mock_rtp") {
485 testonly = true
486 sources = [
487 "test/mock_rtpreceiver.h",
488 "test/mock_rtpsender.h",
489 ]
490
491 deps = [
492 ":libjingle_peerconnection_api",
493 "../test:test_support",
Patrik Höglund4b9e6ba2017-12-19 09:32:11494 ]
495 }
496
Jiawei Ou4206a0a2018-07-20 22:49:43497 rtc_source_set("mock_video_bitrate_allocator") {
498 testonly = true
499 sources = [
500 "test/mock_video_bitrate_allocator.h",
501 ]
502
503 deps = [
504 "../api/video:video_bitrate_allocator",
505 "../test:test_support",
506 ]
507 }
508
Emircan Uysalerdbcac7f2017-10-31 06:10:12509 rtc_source_set("mock_video_codec_factory") {
510 testonly = true
511 sources = [
512 "test/mock_video_decoder_factory.h",
513 "test/mock_video_encoder_factory.h",
514 ]
515
Emircan Uysalerdbcac7f2017-10-31 06:10:12516 deps = [
Mirko Bonadei34814c72018-01-11 09:13:56517 "../api/video_codecs:video_codecs_api",
Emircan Uysalerdbcac7f2017-10-31 06:10:12518 "../test:test_support",
Emircan Uysalerdbcac7f2017-10-31 06:10:12519 ]
520 }
521
Erik Språngc84cd952018-10-15 09:55:13522 rtc_source_set("mock_video_decoder") {
523 visibility = [ "*" ]
524
525 testonly = true
526 sources = [
527 "test/mock_video_decoder.cc",
528 "test/mock_video_decoder.h",
529 ]
530
531 deps = [
532 "../api/video_codecs:video_codecs_api",
533 "../test:test_support",
534 ]
535 }
536
Erik Språng6af1c922018-10-12 08:01:30537 rtc_source_set("mock_video_encoder") {
Erik Språngc84cd952018-10-15 09:55:13538 visibility = [ "*" ]
539
Erik Språng6af1c922018-10-12 08:01:30540 testonly = true
541 sources = [
542 "test/mock_video_encoder.cc",
543 "test/mock_video_encoder.h",
544 ]
545
546 deps = [
547 "../api/video_codecs:video_codecs_api",
548 "../test:test_support",
549 ]
550 }
551
deadbeefb5388d72017-02-24 09:17:43552 rtc_source_set("rtc_api_unittests") {
deadbeef6038e972017-02-17 07:31:33553 testonly = true
kjellandere0629c02017-04-25 11:04:50554
deadbeef6038e972017-02-17 07:31:33555 sources = [
kwiberg529662a2017-09-04 12:43:17556 "array_view_unittest.cc",
zhihuang55adc0e2017-03-11 02:33:45557 "ortc/mediadescription_unittest.cc",
558 "ortc/sessiondescription_unittest.cc",
deadbeef6038e972017-02-17 07:31:33559 "rtcerror_unittest.cc",
Stefan Holmer1acbd682017-09-01 13:29:28560 "rtpparameters_unittest.cc",
deadbeef6038e972017-02-17 07:31:33561 ]
562
563 if (!build_with_chromium && is_clang) {
564 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
565 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
566 }
567
568 deps = [
kwiberg529662a2017-09-04 12:43:17569 ":array_view",
deadbeef6038e972017-02-17 07:31:33570 ":libjingle_peerconnection_api",
zhihuang55adc0e2017-03-11 02:33:45571 ":ortc_api",
Patrik Höglunda8005cf2017-12-13 15:05:42572 "../rtc_base:checks",
kwiberg529662a2017-09-04 12:43:17573 "../rtc_base:rtc_base_approved",
574 "../rtc_base:rtc_base_tests_utils",
jianjun.zhuc0247402017-07-11 13:20:45575 "../test:test_support",
Sebastian Jansson6fae6ec2018-05-08 08:43:18576 "units:units_unittests",
deadbeef6038e972017-02-17 07:31:33577 ]
deadbeef6038e972017-02-17 07:31:33578 }
Anton Sukhanov7940da02018-10-10 17:34:49579
580 rtc_source_set("fake_media_transport") {
581 testonly = true
582
583 sources = [
584 "test/fake_media_transport.h",
585 ]
586
587 deps = [
588 ":libjingle_peerconnection_api",
589 "../rtc_base:checks",
590 ]
591 }
kjellanderfd5b4e92016-06-13 19:08:33592}