2016-06-13 00:19:48 -07:00
|
|
|
# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
#
|
|
|
|
|
# Use of this source code is governed by a BSD-style license
|
|
|
|
|
# that can be found in the LICENSE file in the root of the source
|
|
|
|
|
# tree. An additional intellectual property rights grant can be found
|
|
|
|
|
# in the file PATENTS. All contributing project authors may
|
|
|
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
|
2017-01-24 06:58:22 -08:00
|
|
|
import("../webrtc.gni")
|
2016-06-13 00:19:48 -07:00
|
|
|
import("audio_coding/audio_coding.gni")
|
|
|
|
|
|
|
|
|
|
group("modules") {
|
2017-12-15 10:00:58 +01:00
|
|
|
deps = [
|
2016-06-13 00:19:48 -07:00
|
|
|
"audio_coding",
|
|
|
|
|
"audio_device",
|
2016-10-28 05:44:03 -07:00
|
|
|
"audio_mixer",
|
2016-06-13 00:19:48 -07:00
|
|
|
"audio_processing",
|
2016-10-28 05:44:03 -07:00
|
|
|
"congestion_controller",
|
|
|
|
|
"pacing",
|
|
|
|
|
"remote_bitrate_estimator",
|
2016-06-13 00:19:48 -07:00
|
|
|
"rtp_rtcp",
|
|
|
|
|
"utility",
|
|
|
|
|
"video_coding",
|
|
|
|
|
"video_processing",
|
|
|
|
|
]
|
2017-12-20 21:25:47 +01:00
|
|
|
|
|
|
|
|
if (rtc_desktop_capture_supported) {
|
|
|
|
|
deps += [ "desktop_capture" ]
|
|
|
|
|
}
|
2016-06-13 00:19:48 -07:00
|
|
|
}
|
|
|
|
|
|
2017-11-14 10:32:15 +01:00
|
|
|
rtc_source_set("module_api_public") {
|
2020-01-21 12:10:10 +01:00
|
|
|
sources = [ "include/module_common_types_public.h" ]
|
2020-06-05 14:30:41 +02:00
|
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ]
|
2017-11-14 10:32:15 +01:00
|
|
|
}
|
|
|
|
|
|
2020-09-01 13:29:52 +02:00
|
|
|
rtc_source_set("module_api") {
|
2018-01-10 15:54:53 +00:00
|
|
|
visibility = [ "*" ]
|
2022-07-01 13:38:59 +02:00
|
|
|
sources = [ "include/module_common_types.h" ]
|
2017-04-26 03:38:35 -07:00
|
|
|
}
|
|
|
|
|
|
Revert "Revert "Enables PeerConnectionFactory using external fec controller""
This reverts commit 00733015fafbbc61ddc12dfdc88b21a9fcd9d122.
Reason for revert: The reason for a downstream test failure on the original commit and a workaround has been found. Solution is to keep a PeerConnectionFactory constructor implementation as the same as before.
Original change's description:
> Revert "Enables PeerConnectionFactory using external fec controller"
>
> This reverts commit 4f07bdb25567d8ef528311e0b50a62c61d543fc3.
>
> Reason for revert: Speculatively reverting, because downstream test is now hitting "PeerConnectionFactory.initialize was not called before creating a PeerConnectionFactory" error, even though it did call initialize. I don't see how any change in this CL could cause that, but it's the only CL on the blamelist, and it does modify PeerConnectionFactory.java
>
> Original change's description:
> > Enables PeerConnectionFactory using external fec controller
> >
> > Bug: webrtc:8799
> > Change-Id: Ieb2cf6163b9a83844ab9ed4822b4a7f1db4c24b8
> > Reviewed-on: https://webrtc-review.googlesource.com/43961
> > Commit-Queue: Ying Wang <yinwa@webrtc.org>
> > Reviewed-by: Stefan Holmer <stefan@webrtc.org>
> > Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
> > Reviewed-by: Niels Moller <nisse@webrtc.org>
> > Reviewed-by: Sami Kalliomäki <sakal@webrtc.org>
> > Cr-Commit-Position: refs/heads/master@{#22038}
>
> TBR=sakal@webrtc.org,kwiberg@webrtc.org,nisse@webrtc.org,stefan@webrtc.org,yinwa@webrtc.org
>
> Change-Id: I95868c35d6f9973e0ebf563814cd71d0fcbd433d
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug: webrtc:8799
> Reviewed-on: https://webrtc-review.googlesource.com/54080
> Reviewed-by: Taylor Brandstetter <deadbeef@webrtc.org>
> Commit-Queue: Taylor Brandstetter <deadbeef@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#22040}
TBR=deadbeef@webrtc.org,sakal@webrtc.org,kwiberg@webrtc.org,nisse@webrtc.org,stefan@webrtc.org,yinwa@webrtc.org
Bug: webrtc:8799
Change-Id: If9f3292bfcc739782967530c49f006d0abbc38a8
Reviewed-on: https://webrtc-review.googlesource.com/55400
Commit-Queue: Ying Wang <yinwa@webrtc.org>
Reviewed-by: Ying Wang <yinwa@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22100}
2018-02-20 12:50:27 +01:00
|
|
|
rtc_source_set("module_fec_api") {
|
|
|
|
|
visibility = [ "*" ]
|
2020-01-21 12:10:10 +01:00
|
|
|
sources = [ "include/module_fec_types.h" ]
|
Revert "Revert "Enables PeerConnectionFactory using external fec controller""
This reverts commit 00733015fafbbc61ddc12dfdc88b21a9fcd9d122.
Reason for revert: The reason for a downstream test failure on the original commit and a workaround has been found. Solution is to keep a PeerConnectionFactory constructor implementation as the same as before.
Original change's description:
> Revert "Enables PeerConnectionFactory using external fec controller"
>
> This reverts commit 4f07bdb25567d8ef528311e0b50a62c61d543fc3.
>
> Reason for revert: Speculatively reverting, because downstream test is now hitting "PeerConnectionFactory.initialize was not called before creating a PeerConnectionFactory" error, even though it did call initialize. I don't see how any change in this CL could cause that, but it's the only CL on the blamelist, and it does modify PeerConnectionFactory.java
>
> Original change's description:
> > Enables PeerConnectionFactory using external fec controller
> >
> > Bug: webrtc:8799
> > Change-Id: Ieb2cf6163b9a83844ab9ed4822b4a7f1db4c24b8
> > Reviewed-on: https://webrtc-review.googlesource.com/43961
> > Commit-Queue: Ying Wang <yinwa@webrtc.org>
> > Reviewed-by: Stefan Holmer <stefan@webrtc.org>
> > Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
> > Reviewed-by: Niels Moller <nisse@webrtc.org>
> > Reviewed-by: Sami Kalliomäki <sakal@webrtc.org>
> > Cr-Commit-Position: refs/heads/master@{#22038}
>
> TBR=sakal@webrtc.org,kwiberg@webrtc.org,nisse@webrtc.org,stefan@webrtc.org,yinwa@webrtc.org
>
> Change-Id: I95868c35d6f9973e0ebf563814cd71d0fcbd433d
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug: webrtc:8799
> Reviewed-on: https://webrtc-review.googlesource.com/54080
> Reviewed-by: Taylor Brandstetter <deadbeef@webrtc.org>
> Commit-Queue: Taylor Brandstetter <deadbeef@webrtc.org>
> Cr-Commit-Position: refs/heads/master@{#22040}
TBR=deadbeef@webrtc.org,sakal@webrtc.org,kwiberg@webrtc.org,nisse@webrtc.org,stefan@webrtc.org,yinwa@webrtc.org
Bug: webrtc:8799
Change-Id: If9f3292bfcc739782967530c49f006d0abbc38a8
Reviewed-on: https://webrtc-review.googlesource.com/55400
Commit-Queue: Ying Wang <yinwa@webrtc.org>
Reviewed-by: Ying Wang <yinwa@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22100}
2018-02-20 12:50:27 +01:00
|
|
|
}
|
|
|
|
|
|
2021-02-01 09:56:37 +00:00
|
|
|
if (rtc_include_tests && !build_with_chromium) {
|
2016-09-14 05:10:01 -07:00
|
|
|
modules_tests_resources = [
|
2020-02-27 13:46:51 +01:00
|
|
|
"../resources/audio_coding/testfile16kHz.pcm",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/audio_coding/testfile32kHz.pcm",
|
|
|
|
|
"../resources/audio_coding/teststereo32kHz.pcm",
|
|
|
|
|
"../resources/foreman_cif.yuv",
|
2016-09-14 05:10:01 -07:00
|
|
|
]
|
2016-08-30 02:53:49 -07:00
|
|
|
|
|
|
|
|
if (is_ios) {
|
|
|
|
|
bundle_data("modules_tests_bundle_data") {
|
|
|
|
|
testonly = true
|
|
|
|
|
sources = modules_tests_resources
|
2020-01-21 12:10:10 +01:00
|
|
|
outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ]
|
2016-08-30 02:53:49 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_test("modules_tests") {
|
2016-08-03 10:46:47 -07:00
|
|
|
testonly = true
|
|
|
|
|
|
|
|
|
|
deps = [
|
2016-11-30 06:12:01 -08:00
|
|
|
"../test:test_main",
|
2017-02-06 02:21:11 -08:00
|
|
|
"../test:video_test_common",
|
2017-01-30 03:07:03 -08:00
|
|
|
"audio_coding:audio_coding_modules_tests",
|
|
|
|
|
"rtp_rtcp:rtp_rtcp_modules_tests",
|
|
|
|
|
"video_coding:video_coding_modules_tests",
|
2016-08-03 10:46:47 -07:00
|
|
|
"//testing/gtest",
|
|
|
|
|
]
|
|
|
|
|
|
2017-12-20 21:25:47 +01:00
|
|
|
if (rtc_desktop_capture_supported) {
|
|
|
|
|
deps += [ "desktop_capture:desktop_capture_modules_tests" ]
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-14 05:10:01 -07:00
|
|
|
data = modules_tests_resources
|
|
|
|
|
|
2016-08-03 10:46:47 -07:00
|
|
|
if (is_android) {
|
2022-04-19 15:32:37 +02:00
|
|
|
use_default_launcher = false
|
2017-09-07 07:50:06 -07:00
|
|
|
deps += [
|
|
|
|
|
# NOTE(brandtr): Including Java classes seems only to be possible from
|
|
|
|
|
# rtc_test targets. Therefore we include this target here, instead of
|
|
|
|
|
# in video_coding_modules_tests, where it is actually used.
|
|
|
|
|
"../sdk/android:libjingle_peerconnection_java",
|
2022-04-19 15:32:37 +02:00
|
|
|
"//sdk/android:native_test_jni_onload",
|
|
|
|
|
"//testing/android/native_test:native_test_support",
|
2017-09-07 07:50:06 -07:00
|
|
|
]
|
2016-08-15 02:29:11 -07:00
|
|
|
shard_timeout = 900
|
2016-08-03 10:46:47 -07:00
|
|
|
}
|
2016-08-30 02:53:49 -07:00
|
|
|
|
|
|
|
|
if (is_ios) {
|
|
|
|
|
deps += [ ":modules_tests_bundle_data" ]
|
2016-08-03 10:46:47 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-14 05:10:01 -07:00
|
|
|
modules_unittests_resources = [
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/audio_coding/neteq_opus.rtp",
|
2017-11-27 14:05:27 +01:00
|
|
|
"../resources/audio_coding/neteq_opus_dtx.rtp",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/audio_coding/neteq_universal_new.rtp",
|
2020-01-21 12:10:10 +01:00
|
|
|
"../resources/audio_coding/speech_4_channels_48k_one_second.wav",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/audio_coding/speech_mono_16kHz.pcm",
|
|
|
|
|
"../resources/audio_coding/speech_mono_32_48kHz.pcm",
|
2020-02-27 13:46:51 +01:00
|
|
|
"../resources/audio_coding/testfile16kHz.pcm",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/audio_coding/testfile32kHz.pcm",
|
2019-02-22 10:13:44 +01:00
|
|
|
"../resources/audio_coding/testfile_fake_stereo_32kHz.pcm",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/audio_coding/teststereo32kHz.pcm",
|
|
|
|
|
"../resources/audio_device/audio_short16.pcm",
|
|
|
|
|
"../resources/audio_device/audio_short44.pcm",
|
|
|
|
|
"../resources/audio_device/audio_short48.pcm",
|
|
|
|
|
"../resources/audio_processing/agc/agc_audio.pcm",
|
|
|
|
|
"../resources/audio_processing/agc/agc_no_circular_buffer.dat",
|
|
|
|
|
"../resources/audio_processing/agc/agc_pitch_gain.dat",
|
|
|
|
|
"../resources/audio_processing/agc/agc_pitch_lag.dat",
|
|
|
|
|
"../resources/audio_processing/agc/agc_spectral_peak.dat",
|
|
|
|
|
"../resources/audio_processing/agc/agc_vad.dat",
|
|
|
|
|
"../resources/audio_processing/agc/agc_voicing_prob.dat",
|
|
|
|
|
"../resources/audio_processing/agc/agc_with_circular_buffer.dat",
|
|
|
|
|
"../resources/audio_processing/output_data_fixed.pb",
|
|
|
|
|
"../resources/audio_processing/output_data_float.pb",
|
2020-09-25 12:02:32 +02:00
|
|
|
"../resources/audio_processing/output_data_float_avx2.pb",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/audio_processing/output_data_mac.pb",
|
|
|
|
|
"../resources/audio_processing/transient/ajm-macbook-1-spke16m.pcm",
|
|
|
|
|
"../resources/audio_processing/transient/audio16kHz.pcm",
|
|
|
|
|
"../resources/audio_processing/transient/audio32kHz.pcm",
|
|
|
|
|
"../resources/audio_processing/transient/audio48kHz.pcm",
|
|
|
|
|
"../resources/audio_processing/transient/audio8kHz.pcm",
|
|
|
|
|
"../resources/audio_processing/transient/detect16kHz.dat",
|
|
|
|
|
"../resources/audio_processing/transient/detect32kHz.dat",
|
|
|
|
|
"../resources/audio_processing/transient/detect48kHz.dat",
|
|
|
|
|
"../resources/audio_processing/transient/detect8kHz.dat",
|
|
|
|
|
"../resources/audio_processing/transient/double-utils.dat",
|
|
|
|
|
"../resources/audio_processing/transient/float-utils.dat",
|
|
|
|
|
"../resources/audio_processing/transient/suppressed16kHz.pcm",
|
|
|
|
|
"../resources/audio_processing/transient/suppressed32kHz.pcm",
|
|
|
|
|
"../resources/audio_processing/transient/suppressed8kHz.pcm",
|
|
|
|
|
"../resources/audio_processing/transient/wpd0.dat",
|
|
|
|
|
"../resources/audio_processing/transient/wpd1.dat",
|
|
|
|
|
"../resources/audio_processing/transient/wpd2.dat",
|
|
|
|
|
"../resources/audio_processing/transient/wpd3.dat",
|
|
|
|
|
"../resources/audio_processing/transient/wpd4.dat",
|
|
|
|
|
"../resources/audio_processing/transient/wpd5.dat",
|
|
|
|
|
"../resources/audio_processing/transient/wpd6.dat",
|
|
|
|
|
"../resources/audio_processing/transient/wpd7.dat",
|
|
|
|
|
"../resources/deflicker_before_cif_short.yuv",
|
|
|
|
|
"../resources/far16_stereo.pcm",
|
2022-08-03 14:37:00 +02:00
|
|
|
"../resources/far176_stereo.pcm",
|
|
|
|
|
"../resources/far192_stereo.pcm",
|
|
|
|
|
"../resources/far22_stereo.pcm",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/far32_stereo.pcm",
|
|
|
|
|
"../resources/far44_stereo.pcm",
|
|
|
|
|
"../resources/far48_stereo.pcm",
|
2022-08-03 14:37:00 +02:00
|
|
|
"../resources/far88_stereo.pcm",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/far8_stereo.pcm",
|
2022-08-03 14:37:00 +02:00
|
|
|
"../resources/far96_stereo.pcm",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/foremanColorEnhanced_cif_short.yuv",
|
|
|
|
|
"../resources/foreman_cif.yuv",
|
|
|
|
|
"../resources/foreman_cif_short.yuv",
|
|
|
|
|
"../resources/near16_stereo.pcm",
|
2022-08-03 14:37:00 +02:00
|
|
|
"../resources/near176_stereo.pcm",
|
|
|
|
|
"../resources/near192_stereo.pcm",
|
|
|
|
|
"../resources/near22_stereo.pcm",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/near32_stereo.pcm",
|
|
|
|
|
"../resources/near44_stereo.pcm",
|
|
|
|
|
"../resources/near48_stereo.pcm",
|
2022-08-03 14:37:00 +02:00
|
|
|
"../resources/near88_stereo.pcm",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/near8_stereo.pcm",
|
2022-08-03 14:37:00 +02:00
|
|
|
"../resources/near96_stereo.pcm",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/ref03.aecdump",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke1_0_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke1_0_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke1_1_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke1_1_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke2_0_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke2_0_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke2_1_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingChoke2_1_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingDelay1_0_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingDelay1_0_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingLoss1_0_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_IncreasingLoss1_0_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_Multi1_1_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_Multi1_1_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_0_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_0_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_1_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyChoke_1_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyDelay_0_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyDelay_0_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyLoss_0_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_SteadyLoss_0_TOF.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_UnlimitedSpeed_0_AST.bin",
|
|
|
|
|
"../resources/remote_bitrate_estimator/VideoSendersTest_BweTest_UnlimitedSpeed_0_TOF.bin",
|
|
|
|
|
"../resources/short_mixed_mono_48.dat",
|
|
|
|
|
"../resources/short_mixed_mono_48.pcm",
|
2020-01-21 12:10:10 +01:00
|
|
|
"../resources/short_mixed_mono_48_arm.dat",
|
2017-09-15 06:47:31 +02:00
|
|
|
"../resources/short_mixed_stereo_48.dat",
|
|
|
|
|
"../resources/short_mixed_stereo_48.pcm",
|
|
|
|
|
"../resources/voice_engine/audio_tiny48.wav",
|
2016-09-14 05:10:01 -07:00
|
|
|
]
|
2016-08-30 02:53:49 -07:00
|
|
|
if (is_ios) {
|
|
|
|
|
bundle_data("modules_unittests_bundle_data") {
|
|
|
|
|
testonly = true
|
|
|
|
|
sources = modules_unittests_resources
|
2020-01-21 12:10:10 +01:00
|
|
|
outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ]
|
2016-08-30 02:53:49 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 04:10:34 -07:00
|
|
|
rtc_test("modules_unittests") {
|
2016-06-13 00:19:48 -07:00
|
|
|
testonly = true
|
2017-01-19 08:27:11 -08:00
|
|
|
defines = []
|
2020-01-21 12:10:10 +01:00
|
|
|
sources = [ "module_common_types_unittest.cc" ]
|
2016-06-13 00:19:48 -07:00
|
|
|
|
2017-04-26 03:38:35 -07:00
|
|
|
deps = [
|
|
|
|
|
":module_api",
|
2018-11-28 16:47:49 +01:00
|
|
|
":module_api_public",
|
2016-11-30 06:12:01 -08:00
|
|
|
"../test:test_main",
|
2018-10-15 15:25:34 +02:00
|
|
|
"../test:test_support",
|
2017-01-19 08:27:11 -08:00
|
|
|
"audio_coding:audio_coding_unittests",
|
|
|
|
|
"audio_device:audio_device_unittests",
|
|
|
|
|
"audio_mixer:audio_mixer_unittests",
|
|
|
|
|
"audio_processing:audio_processing_unittests",
|
2018-02-23 13:18:29 +01:00
|
|
|
"audio_processing/aec3:aec3_unittests",
|
2019-10-29 22:59:44 +01:00
|
|
|
"audio_processing/ns:ns_unittests",
|
2017-01-19 08:27:11 -08:00
|
|
|
"congestion_controller:congestion_controller_unittests",
|
|
|
|
|
"pacing:pacing_unittests",
|
|
|
|
|
"remote_bitrate_estimator:remote_bitrate_estimator_unittests",
|
|
|
|
|
"rtp_rtcp:rtp_rtcp_unittests",
|
|
|
|
|
"video_coding:video_coding_unittests",
|
2022-05-23 09:53:15 +02:00
|
|
|
"video_coding/timing:timing_unittests",
|
2017-01-19 08:27:11 -08:00
|
|
|
"video_processing:video_processing_unittests",
|
2016-06-13 00:19:48 -07:00
|
|
|
]
|
|
|
|
|
|
2017-12-20 21:25:47 +01:00
|
|
|
if (rtc_desktop_capture_supported) {
|
|
|
|
|
deps += [ "desktop_capture:desktop_capture_unittests" ]
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-14 05:10:01 -07:00
|
|
|
data = modules_unittests_resources
|
|
|
|
|
|
2016-06-13 00:19:48 -07:00
|
|
|
if (is_android) {
|
2022-04-19 15:32:37 +02:00
|
|
|
use_default_launcher = false
|
2016-08-11 00:59:15 -07:00
|
|
|
deps += [
|
2017-07-11 06:20:45 -07:00
|
|
|
"../sdk/android:libjingle_peerconnection_java",
|
2016-08-11 00:59:15 -07:00
|
|
|
"//testing/android/native_test:native_test_support",
|
|
|
|
|
]
|
2016-08-24 07:48:42 -07:00
|
|
|
shard_timeout = 900
|
|
|
|
|
}
|
2016-06-13 00:19:48 -07:00
|
|
|
if (is_ios) {
|
2017-07-11 06:20:45 -07:00
|
|
|
info_plist = "../test/ios/Info.plist"
|
2016-08-30 02:53:49 -07:00
|
|
|
deps += [ ":modules_unittests_bundle_data" ]
|
2017-01-19 08:27:11 -08:00
|
|
|
configs += [ "..:common_objc" ]
|
2016-06-13 00:19:48 -07:00
|
|
|
ldflags = [ "-ObjC" ]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|