Add missing files to audio_processing.
Bug: webrtc:7621 Change-Id: I2cab764232fc4e084ed8a489f4cf3a3ac562c894 Reviewed-on: https://webrtc-review.googlesource.com/34658 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21461}
This commit is contained in:
committed by
Commit Bot
parent
0f1c15de13
commit
6213929de5
@ -108,6 +108,7 @@ if (rtc_include_tests) {
|
|||||||
"../modules/audio_device:mock_audio_device",
|
"../modules/audio_device:mock_audio_device",
|
||||||
"../modules/audio_mixer:audio_mixer_impl",
|
"../modules/audio_mixer:audio_mixer_impl",
|
||||||
"../modules/audio_processing:audio_processing_statistics",
|
"../modules/audio_processing:audio_processing_statistics",
|
||||||
|
"../modules/audio_processing:mocks",
|
||||||
"../modules/congestion_controller:congestion_controller",
|
"../modules/congestion_controller:congestion_controller",
|
||||||
"../modules/congestion_controller:mock_congestion_controller",
|
"../modules/congestion_controller:mock_congestion_controller",
|
||||||
"../modules/pacing:mock_paced_sender",
|
"../modules/pacing:mock_paced_sender",
|
||||||
|
|||||||
@ -214,6 +214,7 @@ if (rtc_include_tests) {
|
|||||||
"../modules/audio_device:mock_audio_device",
|
"../modules/audio_device:mock_audio_device",
|
||||||
"../modules/audio_mixer",
|
"../modules/audio_mixer",
|
||||||
"../modules/audio_mixer:audio_mixer_impl",
|
"../modules/audio_mixer:audio_mixer_impl",
|
||||||
|
"../modules/audio_processing:mocks",
|
||||||
"../modules/bitrate_controller",
|
"../modules/bitrate_controller",
|
||||||
"../modules/congestion_controller",
|
"../modules/congestion_controller",
|
||||||
"../modules/congestion_controller:mock_congestion_controller",
|
"../modules/congestion_controller:mock_congestion_controller",
|
||||||
|
|||||||
@ -438,6 +438,7 @@ if (rtc_include_tests) {
|
|||||||
defines = []
|
defines = []
|
||||||
deps = [
|
deps = [
|
||||||
"../api:video_frame_api_i420",
|
"../api:video_frame_api_i420",
|
||||||
|
"../modules/audio_processing:mocks",
|
||||||
"../pc:rtc_pc",
|
"../pc:rtc_pc",
|
||||||
"../pc:rtc_pc_base",
|
"../pc:rtc_pc_base",
|
||||||
"../rtc_base:checks",
|
"../rtc_base:checks",
|
||||||
|
|||||||
@ -404,11 +404,13 @@ rtc_source_set("apm_logging") {
|
|||||||
rtc_source_set("aec_core") {
|
rtc_source_set("aec_core") {
|
||||||
configs += [ ":apm_debug_dump" ]
|
configs += [ ":apm_debug_dump" ]
|
||||||
sources = [
|
sources = [
|
||||||
|
"aec/aec_common.h",
|
||||||
"aec/aec_core.cc",
|
"aec/aec_core.cc",
|
||||||
"aec/aec_core.h",
|
"aec/aec_core.h",
|
||||||
"aec/aec_core_optimized_methods.h",
|
"aec/aec_core_optimized_methods.h",
|
||||||
"aecm/aecm_core.cc",
|
"aecm/aecm_core.cc",
|
||||||
"aecm/aecm_core.h",
|
"aecm/aecm_core.h",
|
||||||
|
"aecm/aecm_defines.h",
|
||||||
"aecm/echo_control_mobile.cc",
|
"aecm/echo_control_mobile.cc",
|
||||||
"aecm/echo_control_mobile.h",
|
"aecm/echo_control_mobile.h",
|
||||||
"utility/block_mean_calculator.cc",
|
"utility/block_mean_calculator.cc",
|
||||||
@ -493,6 +495,19 @@ rtc_source_set("aec_core") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (rtc_include_tests) {
|
if (rtc_include_tests) {
|
||||||
|
rtc_source_set("mocks") {
|
||||||
|
testonly = true
|
||||||
|
sources = [
|
||||||
|
"include/mock_audio_processing.h",
|
||||||
|
]
|
||||||
|
deps = [
|
||||||
|
":aec_dump_interface",
|
||||||
|
":audio_processing",
|
||||||
|
":audio_processing_statistics",
|
||||||
|
"../../test:test_support",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
group("audio_processing_tests") {
|
group("audio_processing_tests") {
|
||||||
testonly = true
|
testonly = true
|
||||||
deps = [
|
deps = [
|
||||||
@ -524,6 +539,10 @@ if (rtc_include_tests) {
|
|||||||
sources = [
|
sources = [
|
||||||
"aec/echo_cancellation_unittest.cc",
|
"aec/echo_cancellation_unittest.cc",
|
||||||
"aec/system_delay_unittest.cc",
|
"aec/system_delay_unittest.cc",
|
||||||
|
"aec3/mock/mock_block_processor.h",
|
||||||
|
"aec3/mock/mock_echo_remover.h",
|
||||||
|
"aec3/mock/mock_render_delay_buffer.h",
|
||||||
|
"aec3/mock/mock_render_delay_controller.h",
|
||||||
"agc/agc_manager_direct_unittest.cc",
|
"agc/agc_manager_direct_unittest.cc",
|
||||||
"agc/loudness_histogram_unittest.cc",
|
"agc/loudness_histogram_unittest.cc",
|
||||||
"agc/mock_agc.h",
|
"agc/mock_agc.h",
|
||||||
@ -531,6 +550,7 @@ if (rtc_include_tests) {
|
|||||||
"beamformer/array_util_unittest.cc",
|
"beamformer/array_util_unittest.cc",
|
||||||
"beamformer/complex_matrix_unittest.cc",
|
"beamformer/complex_matrix_unittest.cc",
|
||||||
"beamformer/covariance_matrix_generator_unittest.cc",
|
"beamformer/covariance_matrix_generator_unittest.cc",
|
||||||
|
"beamformer/matrix_test_helpers.h",
|
||||||
"beamformer/matrix_unittest.cc",
|
"beamformer/matrix_unittest.cc",
|
||||||
"beamformer/mock_nonlinear_beamformer.h",
|
"beamformer/mock_nonlinear_beamformer.h",
|
||||||
"config_unittest.cc",
|
"config_unittest.cc",
|
||||||
@ -564,6 +584,7 @@ if (rtc_include_tests) {
|
|||||||
":apm_logging",
|
":apm_logging",
|
||||||
":audio_processing",
|
":audio_processing",
|
||||||
":audioproc_test_utils",
|
":audioproc_test_utils",
|
||||||
|
":mocks",
|
||||||
"..:module_api",
|
"..:module_api",
|
||||||
"../..:webrtc_common",
|
"../..:webrtc_common",
|
||||||
"../../:typedefs",
|
"../../:typedefs",
|
||||||
|
|||||||
Reference in New Issue
Block a user