blob: c77a638b39efaa70bcdb39ee725bcc5bb16f1dc2 [file] [log] [blame]
kjellanderc76dc952016-06-03 03:09:32 -07001# Copyright (c) 2016 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")
ossu7bb87ee2017-01-23 04:56:25 -080010if (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("pc") {
kjellander705ecc52016-09-15 00:53:26 -070016 public_deps = [
kjellanderc76dc952016-06-03 03:09:32 -070017 ":rtc_pc",
18 ]
19}
20
21config("rtc_pc_config") {
jbaucheaa9c1d2017-03-06 11:32:22 -080022 defines = []
deadbeef40610e22016-12-22 10:53:38 -080023 if (rtc_enable_sctp) {
24 defines += [ "HAVE_SCTP" ]
25 }
kjellanderc76dc952016-06-03 03:09:32 -070026}
27
zhihuang38ede132017-06-15 12:52:32 -070028rtc_static_library("rtc_pc_base") {
kjellanderc76dc952016-06-03 03:09:32 -070029 defines = []
30 sources = [
31 "audiomonitor.cc",
32 "audiomonitor.h",
33 "bundlefilter.cc",
34 "bundlefilter.h",
35 "channel.cc",
36 "channel.h",
37 "channelmanager.cc",
38 "channelmanager.h",
39 "currentspeakermonitor.cc",
40 "currentspeakermonitor.h",
jbauchdfcab722017-03-06 00:14:10 -080041 "externalhmac.cc",
42 "externalhmac.h",
kjellanderc76dc952016-06-03 03:09:32 -070043 "mediamonitor.cc",
44 "mediamonitor.h",
45 "mediasession.cc",
46 "mediasession.h",
kjellanderc76dc952016-06-03 03:09:32 -070047 "rtcpmuxfilter.cc",
48 "rtcpmuxfilter.h",
zsteind48dbda2017-04-04 19:45:57 -070049 "rtptransport.cc",
50 "rtptransport.h",
zstein398c3fd2017-07-19 13:38:02 -070051 "rtptransportinternal.h",
kjellanderc76dc952016-06-03 03:09:32 -070052 "srtpfilter.cc",
53 "srtpfilter.h",
zstein4dde3df2017-07-07 14:26:25 -070054 "srtpsession.cc",
55 "srtpsession.h",
zstein398c3fd2017-07-19 13:38:02 -070056 "srtptransport.cc",
57 "srtptransport.h",
Zhi Huangb5261582017-09-29 10:51:43 -070058 "transportcontroller.cc",
59 "transportcontroller.h",
kjellanderc76dc952016-06-03 03:09:32 -070060 "voicechannel.h",
61 ]
62
63 deps = [
mbonadei7d9a55b2017-06-01 13:01:48 -070064 "..:webrtc_common",
kjellandera69d9732016-08-31 07:33:05 -070065 "../api:call_api",
mbonadei7d9a55b2017-06-01 13:01:48 -070066 "../api:libjingle_peerconnection_api",
kwiberg84f6a3f2017-09-05 08:43:13 -070067 "../api:optional",
mbonadei7d9a55b2017-06-01 13:01:48 -070068 "../api:ortc_api",
zhihuang38ede132017-06-15 12:52:32 -070069 "../media:rtc_data",
zhihuang130ca7e2017-06-21 01:02:59 -070070 "../media:rtc_h264_profile_id",
zhihuang38ede132017-06-15 12:52:32 -070071 "../media:rtc_media_base",
mbonadei7d9a55b2017-06-01 13:01:48 -070072 "../p2p:rtc_p2p",
ehmaldonadof6a861a2017-07-19 10:40:47 -070073 "../rtc_base:rtc_base",
74 "../rtc_base:rtc_task_queue",
kjellanderc76dc952016-06-03 03:09:32 -070075 ]
76
kjellanderc76dc952016-06-03 03:09:32 -070077 if (rtc_build_libsrtp) {
78 deps += [ "//third_party/libsrtp" ]
79 }
80
ehmaldonadoe9cc6862016-09-05 06:10:18 -070081 public_configs = [ ":rtc_pc_config" ]
kjellanderc76dc952016-06-03 03:09:32 -070082
kjellandere40a7ee2016-10-16 23:56:12 -070083 if (!build_with_chromium && is_clang) {
kjellander142f8c52016-06-13 00:08:24 -070084 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -070085 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellanderc76dc952016-06-03 03:09:32 -070086 }
87}
kjellander142f8c52016-06-13 00:08:24 -070088
zhihuang38ede132017-06-15 12:52:32 -070089rtc_source_set("rtc_pc") {
90 public_deps = [
91 ":rtc_pc_base",
92 ]
93
94 deps = [
95 "../media:rtc_audio_video",
96 ]
97}
98
ossu7bb87ee2017-01-23 04:56:25 -080099config("libjingle_peerconnection_warnings_config") {
100 # GN orders flags on a target before flags from configs. The default config
101 # adds these flags so to cancel them out they need to come from a config and
102 # cannot be on the target directly.
103 if (!is_win && !is_clang) {
104 cflags = [ "-Wno-maybe-uninitialized" ] # Only exists for GCC.
105 }
106}
107
zhihuang38ede132017-06-15 12:52:32 -0700108rtc_static_library("peerconnection") {
ossu7bb87ee2017-01-23 04:56:25 -0800109 cflags = []
110 sources = [
111 "audiotrack.cc",
112 "audiotrack.h",
113 "datachannel.cc",
114 "datachannel.h",
115 "dtmfsender.cc",
116 "dtmfsender.h",
deadbeef1dcb1642017-03-29 21:08:16 -0700117 "iceserverparsing.cc",
118 "iceserverparsing.h",
ossu7bb87ee2017-01-23 04:56:25 -0800119 "jsepicecandidate.cc",
120 "jsepsessiondescription.cc",
121 "localaudiosource.cc",
122 "localaudiosource.h",
ossu7bb87ee2017-01-23 04:56:25 -0800123 "mediastream.cc",
124 "mediastream.h",
125 "mediastreamobserver.cc",
126 "mediastreamobserver.h",
127 "mediastreamtrack.h",
ossu7bb87ee2017-01-23 04:56:25 -0800128 "peerconnection.cc",
129 "peerconnection.h",
130 "peerconnectionfactory.cc",
131 "peerconnectionfactory.h",
132 "remoteaudiosource.cc",
133 "remoteaudiosource.h",
134 "rtcstatscollector.cc",
135 "rtcstatscollector.h",
136 "rtpreceiver.cc",
137 "rtpreceiver.h",
138 "rtpsender.cc",
139 "rtpsender.h",
140 "sctputils.cc",
141 "sctputils.h",
Steve Anton97a9f762017-10-06 10:14:03 -0700142 "sdputils.cc",
143 "sdputils.h",
ossu7bb87ee2017-01-23 04:56:25 -0800144 "statscollector.cc",
145 "statscollector.h",
146 "streamcollection.h",
deadbeef804c1af2017-02-11 19:07:31 -0800147 "trackmediainfomap.cc",
148 "trackmediainfomap.h",
ossu7bb87ee2017-01-23 04:56:25 -0800149 "videocapturertracksource.cc",
150 "videocapturertracksource.h",
151 "videotrack.cc",
152 "videotrack.h",
153 "videotracksource.cc",
154 "videotracksource.h",
155 "webrtcsdp.cc",
156 "webrtcsdp.h",
157 "webrtcsession.cc",
158 "webrtcsession.h",
159 "webrtcsessiondescriptionfactory.cc",
160 "webrtcsessiondescriptionfactory.h",
161 ]
162
163 configs += [ ":libjingle_peerconnection_warnings_config" ]
164
165 if (!build_with_chromium && is_clang) {
166 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
167 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
168 }
169
170 deps = [
zhihuang38ede132017-06-15 12:52:32 -0700171 ":rtc_pc_base",
mbonadei7d9a55b2017-06-01 13:01:48 -0700172 "..:webrtc_common",
ossu7bb87ee2017-01-23 04:56:25 -0800173 "../api:call_api",
kwiberg84f6a3f2017-09-05 08:43:13 -0700174 "../api:optional",
ossu7bb87ee2017-01-23 04:56:25 -0800175 "../api:rtc_stats_api",
ilnikd60d06a2017-04-05 03:02:20 -0700176 "../api/video_codecs:video_codecs_api",
zhihuang38ede132017-06-15 12:52:32 -0700177 "../call:call_interfaces",
mbonadei7d9a55b2017-06-01 13:01:48 -0700178 "../logging:rtc_event_log_api",
zhihuang38ede132017-06-15 12:52:32 -0700179 "../media:rtc_data",
180 "../media:rtc_media_base",
mbonadei7d9a55b2017-06-01 13:01:48 -0700181 "../p2p:rtc_p2p",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700182 "../rtc_base:rtc_base",
183 "../rtc_base:rtc_base_approved",
ossu7bb87ee2017-01-23 04:56:25 -0800184 "../stats",
mbonadei7d9a55b2017-06-01 13:01:48 -0700185 "../system_wrappers:system_wrappers",
ossu7bb87ee2017-01-23 04:56:25 -0800186 ]
187
ossuda250062017-01-23 07:37:43 -0800188 public_deps = [
189 "../api:libjingle_peerconnection_api",
190 ]
zhihuang38ede132017-06-15 12:52:32 -0700191}
192
193# This target implements CreatePeerConnectionFactory methods that will create a
194# PeerConnection will full functionality (audio, video and data). Applications
195# that wish to reduce their binary size by ommitting functionality they don't
196# need should use CreateModularCreatePeerConnectionFactory instead, using the
197# "peerconnection" build target and other targets specific to their
198# requrements. See comment in peerconnectionfactoryinterface.h.
zhihuangab97e182017-06-22 01:28:59 -0700199rtc_static_library("create_pc_factory") {
zhihuang38ede132017-06-15 12:52:32 -0700200 sources = [
201 "createpeerconnectionfactory.cc",
202 ]
203
204 deps = [
205 "../api:audio_mixer_api",
206 "../api:libjingle_peerconnection_api",
207 "../api/audio_codecs:audio_codecs_api",
208 "../api/audio_codecs:builtin_audio_decoder_factory",
209 "../api/audio_codecs:builtin_audio_encoder_factory",
Magnus Jedvert58b03162017-09-15 19:02:47 +0200210 "../api/video_codecs:video_codecs_api",
zhihuang38ede132017-06-15 12:52:32 -0700211 "../call",
212 "../call:call_interfaces",
213 "../logging:rtc_event_log_api",
214 "../media:rtc_audio_video",
215 "../modules/audio_device:audio_device",
peaha9cc40b2017-06-29 08:32:09 -0700216 "../modules/audio_processing:audio_processing",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700217 "../rtc_base:rtc_base",
218 "../rtc_base:rtc_base_approved",
zhihuang38ede132017-06-15 12:52:32 -0700219 ]
220
221 configs += [ ":libjingle_peerconnection_warnings_config" ]
222
223 if (!build_with_chromium && is_clang) {
224 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
225 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
226 }
227}
228
229rtc_source_set("libjingle_peerconnection") {
230 public_deps = [
231 ":create_pc_factory",
232 ":peerconnection",
233 "../api:libjingle_peerconnection_api",
234 ]
ossuda250062017-01-23 07:37:43 -0800235
ossu7bb87ee2017-01-23 04:56:25 -0800236 if (rtc_use_quic) {
237 sources += [
238 "quicdatachannel.cc",
239 "quicdatachannel.h",
240 "quicdatatransport.cc",
241 "quicdatatransport.h",
242 ]
243 deps += [ "//third_party/libquic" ]
244 public_deps = [
245 "//third_party/libquic",
246 ]
247 }
248}
249
kjellander142f8c52016-06-13 00:08:24 -0700250if (rtc_include_tests) {
251 config("rtc_pc_unittests_config") {
252 # GN orders flags on a target before flags from configs. The default config
253 # adds -Wall, and this flag have to be after -Wall -- so they need to
254 # come from a config and can't be on the target directly.
255 if (!is_win && !is_clang) {
256 cflags = [ "-Wno-maybe-uninitialized" ] # Only exists for GCC.
257 }
258 }
259
ehmaldonado38a21322016-09-02 04:10:34 -0700260 rtc_test("rtc_pc_unittests") {
kjellander142f8c52016-06-13 00:08:24 -0700261 testonly = true
262
263 sources = [
264 "bundlefilter_unittest.cc",
265 "channel_unittest.cc",
266 "channelmanager_unittest.cc",
267 "currentspeakermonitor_unittest.cc",
268 "mediasession_unittest.cc",
269 "rtcpmuxfilter_unittest.cc",
zstein56162b92017-04-24 16:54:35 -0700270 "rtptransport_unittest.cc",
zstein398c3fd2017-07-19 13:38:02 -0700271 "rtptransporttestutil.h",
kjellander142f8c52016-06-13 00:08:24 -0700272 "srtpfilter_unittest.cc",
zstein4dde3df2017-07-07 14:26:25 -0700273 "srtpsession_unittest.cc",
274 "srtptestutil.h",
zstein398c3fd2017-07-19 13:38:02 -0700275 "srtptransport_unittest.cc",
Zhi Huangb5261582017-09-29 10:51:43 -0700276 "transportcontroller_unittest.cc",
kjellander142f8c52016-06-13 00:08:24 -0700277 ]
278
279 include_dirs = [ "//third_party/libsrtp/srtp" ]
280
ehmaldonado7a2ce0b2016-09-05 01:35:44 -0700281 configs += [ ":rtc_pc_unittests_config" ]
kjellander142f8c52016-06-13 00:08:24 -0700282
kjellandere40a7ee2016-10-16 23:56:12 -0700283 if (!build_with_chromium && is_clang) {
kjellander142f8c52016-06-13 00:08:24 -0700284 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 04:10:34 -0700285 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kjellander142f8c52016-06-13 00:08:24 -0700286 }
287
288 if (is_win) {
289 libs = [ "strmiids.lib" ]
290 }
291
292 deps = [
ossu7bb87ee2017-01-23 04:56:25 -0800293 ":libjingle_peerconnection",
Zhi Huangb5261582017-09-29 10:51:43 -0700294 ":pc_test_utils",
kjellander142f8c52016-06-13 00:08:24 -0700295 ":rtc_pc",
kwiberg529662a2017-09-04 05:43:17 -0700296 "../api:array_view",
mbonadei7d9a55b2017-06-01 13:01:48 -0700297 "../logging:rtc_event_log_api",
298 "../media:rtc_media_base",
mbonadei9087d492017-04-25 00:35:35 -0700299 "../media:rtc_media_tests_utils",
mbonadei7d9a55b2017-06-01 13:01:48 -0700300 "../p2p:p2p_test_utils",
301 "../p2p:rtc_p2p",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700302 "../rtc_base:rtc_base",
303 "../rtc_base:rtc_base_approved",
304 "../rtc_base:rtc_base_tests_main",
305 "../rtc_base:rtc_base_tests_utils",
kjellander142f8c52016-06-13 00:08:24 -0700306 "../system_wrappers:metrics_default",
zstein398c3fd2017-07-19 13:38:02 -0700307 "../test:test_support",
kjellander142f8c52016-06-13 00:08:24 -0700308 ]
309
310 if (rtc_build_libsrtp) {
311 deps += [ "//third_party/libsrtp" ]
312 }
313
314 if (is_android) {
315 deps += [ "//testing/android/native_test:native_test_support" ]
316 }
317 }
ossu7bb87ee2017-01-23 04:56:25 -0800318
deadbeefe814a0d2017-02-25 18:15:09 -0800319 rtc_source_set("pc_test_utils") {
320 testonly = true
321 sources = [
322 "test/fakeaudiocapturemodule.cc",
323 "test/fakeaudiocapturemodule.h",
324 "test/fakedatachannelprovider.h",
325 "test/fakeperiodicvideocapturer.h",
326 "test/fakertccertificategenerator.h",
Zhi Huangb5261582017-09-29 10:51:43 -0700327 "test/faketransportcontroller.h",
deadbeefe814a0d2017-02-25 18:15:09 -0800328 "test/fakevideotrackrenderer.h",
329 "test/fakevideotracksource.h",
330 "test/mock_datachannel.h",
331 "test/mock_peerconnection.h",
332 "test/mock_webrtcsession.h",
333 "test/mockpeerconnectionobservers.h",
334 "test/peerconnectiontestwrapper.cc",
335 "test/peerconnectiontestwrapper.h",
336 "test/rtcstatsobtainer.h",
337 "test/testsdpstrings.h",
338 ]
339
340 deps = [
341 ":libjingle_peerconnection",
Zhi Huangb5261582017-09-29 10:51:43 -0700342 ":rtc_pc_base",
mbonadei7d9a55b2017-06-01 13:01:48 -0700343 "..:webrtc_common",
344 "../api:libjingle_peerconnection_test_api",
345 "../api:rtc_stats_api",
zhihuang38ede132017-06-15 12:52:32 -0700346 "../call:call_interfaces",
347 "../logging:rtc_event_log_api",
mbonadei7d9a55b2017-06-01 13:01:48 -0700348 "../media:rtc_media",
349 "../media:rtc_media_tests_utils",
350 "../modules/audio_device:audio_device",
351 "../p2p:p2p_test_utils",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700352 "../rtc_base:rtc_base",
353 "../rtc_base:rtc_base_approved",
354 "../rtc_base:rtc_base_tests_utils",
mbonadei7d9a55b2017-06-01 13:01:48 -0700355 "../test:test_support",
deadbeefe814a0d2017-02-25 18:15:09 -0800356 "//testing/gmock",
357 ]
358
359 if (!build_with_chromium && is_clang) {
360 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
361 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
362 }
363 }
364
ossu7bb87ee2017-01-23 04:56:25 -0800365 config("peerconnection_unittests_config") {
366 # The warnings below are enabled by default. Since GN orders compiler flags
367 # for a target before flags from configs, the only way to disable such
368 # warnings is by having them in a separate config, loaded from the target.
369 # TODO(kjellander): Make the code compile without disabling these flags.
370 # See https://bugs.webrtc.org/3307.
371 if (is_clang && is_win) {
372 cflags = [
373 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=6267
374 # for -Wno-sign-compare
375 "-Wno-sign-compare",
ossu7bb87ee2017-01-23 04:56:25 -0800376 ]
377 }
378
379 if (!is_win) {
380 cflags = [ "-Wno-sign-compare" ]
381 }
382 }
383
384 rtc_test("peerconnection_unittests") {
ossu7bb87ee2017-01-23 04:56:25 -0800385 testonly = true
386 sources = [
387 "datachannel_unittest.cc",
388 "dtmfsender_unittest.cc",
deadbeef1dcb1642017-03-29 21:08:16 -0700389 "iceserverparsing_unittest.cc",
ossu7bb87ee2017-01-23 04:56:25 -0800390 "jsepsessiondescription_unittest.cc",
391 "localaudiosource_unittest.cc",
392 "mediaconstraintsinterface_unittest.cc",
393 "mediastream_unittest.cc",
Steve Anton6b63cd52017-10-06 11:20:31 -0700394 "peerconnection_crypto_unittest.cc",
Steve Antonf1c6db12017-10-13 11:13:35 -0700395 "peerconnection_ice_unittest.cc",
deadbeef1dcb1642017-03-29 21:08:16 -0700396 "peerconnection_integrationtest.cc",
Henrik Boström933d8b02017-10-10 10:05:16 -0700397 "peerconnection_rtp_unittest.cc",
ossu7bb87ee2017-01-23 04:56:25 -0800398 "peerconnectionendtoend_unittest.cc",
399 "peerconnectionfactory_unittest.cc",
400 "peerconnectioninterface_unittest.cc",
Steve Anton94286cb2017-09-26 16:20:19 -0700401 "peerconnectionwrapper.cc",
402 "peerconnectionwrapper.h",
ossu7bb87ee2017-01-23 04:56:25 -0800403 "proxy_unittest.cc",
404 "rtcstats_integrationtest.cc",
405 "rtcstatscollector_unittest.cc",
406 "rtpsenderreceiver_unittest.cc",
407 "sctputils_unittest.cc",
408 "statscollector_unittest.cc",
ossu7bb87ee2017-01-23 04:56:25 -0800409 "test/fakeaudiocapturemodule_unittest.cc",
ossu7bb87ee2017-01-23 04:56:25 -0800410 "test/testsdpstrings.h",
deadbeef804c1af2017-02-11 19:07:31 -0800411 "trackmediainfomap_unittest.cc",
ossu7bb87ee2017-01-23 04:56:25 -0800412 "videocapturertracksource_unittest.cc",
413 "videotrack_unittest.cc",
414 "webrtcsdp_unittest.cc",
415 "webrtcsession_unittest.cc",
416 ]
417
418 if (rtc_enable_sctp) {
419 defines = [ "HAVE_SCTP" ]
420 }
421
422 configs += [ ":peerconnection_unittests_config" ]
423
424 if (!build_with_chromium && is_clang) {
425 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
426 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
427 }
428
429 # TODO(jschuh): Bug 1348: fix this warning.
430 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
431
432 if (is_win) {
433 cflags = [
434 "/wd4245", # conversion from int to size_t, signed/unsigned mismatch.
435 "/wd4389", # signed/unsigned mismatch.
436 ]
437 }
438
439 if (rtc_use_quic) {
440 public_deps = [
441 "//third_party/libquic",
442 ]
443 sources += [
444 "quicdatachannel_unittest.cc",
445 "quicdatatransport_unittest.cc",
446 ]
447 }
448
449 deps = []
450 if (is_android) {
Patrik Höglund563934e2017-09-15 09:04:28 +0200451 deps += [ ":android_black_magic" ]
ossu7bb87ee2017-01-23 04:56:25 -0800452 }
453
454 deps += [
455 ":libjingle_peerconnection",
deadbeefe814a0d2017-02-25 18:15:09 -0800456 ":pc_test_utils",
ossu7bb87ee2017-01-23 04:56:25 -0800457 "..:webrtc_common",
458 "../api:fakemetricsobserver",
Patrik Höglund563934e2017-09-15 09:04:28 +0200459 "../api:libjingle_peerconnection_test_api",
460 "../api:rtc_stats_api",
Karl Wibergc5bb00b2017-10-10 23:17:17 +0200461 "../api/audio_codecs:audio_codecs_api",
Patrik Höglund563934e2017-09-15 09:04:28 +0200462 "../api/audio_codecs:builtin_audio_decoder_factory",
463 "../api/audio_codecs:builtin_audio_encoder_factory",
Karl Wibergc5bb00b2017-10-10 23:17:17 +0200464 "../api/audio_codecs/L16:audio_decoder_L16",
465 "../api/audio_codecs/L16:audio_encoder_L16",
Elad Alon99c3fe52017-10-13 16:29:40 +0200466 "../logging:rtc_event_log_api",
Patrik Höglund563934e2017-09-15 09:04:28 +0200467 "../media:rtc_audio_video",
468 "../media:rtc_data", # TODO(phoglund): AFAIK only used for one sctp constant.
469 "../media:rtc_media_base",
mbonadei9087d492017-04-25 00:35:35 -0700470 "../media:rtc_media_tests_utils",
Patrik Höglund563934e2017-09-15 09:04:28 +0200471 "../modules/audio_processing:audio_processing",
472 "../modules/utility:utility",
473 "../p2p:p2p_test_utils",
474 "../p2p:rtc_p2p",
ossu7bb87ee2017-01-23 04:56:25 -0800475 "../pc:rtc_pc",
Henrik Boström933d8b02017-10-10 10:05:16 -0700476 "../rtc_base:rtc_base",
Patrik Höglund563934e2017-09-15 09:04:28 +0200477 "../rtc_base:rtc_base_approved",
ehmaldonadof6a861a2017-07-19 10:40:47 -0700478 "../rtc_base:rtc_base_tests_main",
479 "../rtc_base:rtc_base_tests_utils",
ossu7bb87ee2017-01-23 04:56:25 -0800480 "../system_wrappers:metrics_default",
kwiberg2b3aa142017-06-14 03:31:17 -0700481 "../test:audio_codec_mocks",
Patrik Höglund563934e2017-09-15 09:04:28 +0200482 "../test:test_support",
ossu7bb87ee2017-01-23 04:56:25 -0800483 ]
484
485 if (is_android) {
Patrik Höglund563934e2017-09-15 09:04:28 +0200486 deps += [
487 "//testing/android/native_test:native_test_support",
488
489 # We need to depend on this one directly, or classloads will fail for
490 # the voice engine BuildInfo, for instance.
491 "../sdk/android:libjingle_peerconnection_java",
492 ]
ossu7bb87ee2017-01-23 04:56:25 -0800493
494 shard_timeout = 900
495 }
496 }
Patrik Höglund563934e2017-09-15 09:04:28 +0200497
498 if (is_android) {
499 rtc_source_set("android_black_magic") {
500 # The android code uses hacky includes to chromium-base and the ssl code;
501 # having this in a separate target enables us to keep the peerconnection
502 # unit tests clean.
503 check_includes = false
504 testonly = true
505 sources = [
506 "test/androidtestinitializer.cc",
507 "test/androidtestinitializer.h",
508 ]
509 deps = [
510 "../sdk/android:libjingle_peerconnection_jni",
511 "//testing/android/native_test:native_test_support",
512 ]
513 }
514 }
kjellander142f8c52016-06-13 00:08:24 -0700515}