From 10679938c62b7c2a8d7b80474e524c921112a3e7 Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Tue, 5 Dec 2017 15:07:16 +0100 Subject: [PATCH] Stop using public_deps in modules/audio_processing. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TBR=phoglund@webrtc.org Bug: webrtc:8603 Change-Id: Ib44266389e6f08a77bd92cffd1eba166147687f4 No-Try: True Reviewed-on: https://webrtc-review.googlesource.com/29822 Reviewed-by: Edward Lemur Reviewed-by: Patrik Höglund Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/master@{#21106} --- modules/audio_processing/BUILD.gn | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/modules/audio_processing/BUILD.gn b/modules/audio_processing/BUILD.gn index 6f09165525..75a5ac28ba 100644 --- a/modules/audio_processing/BUILD.gn +++ b/modules/audio_processing/BUILD.gn @@ -239,6 +239,7 @@ rtc_static_library("audio_processing") { defines = [] deps = [ ":aec_dump_interface", + ":audio_processing_c", ":audio_processing_statistics", "..:module_api", "../..:webrtc_common", @@ -249,9 +250,6 @@ rtc_static_library("audio_processing") { "../../rtc_base:protobuf_utils", "../audio_coding:isac", ] - public_deps = [ - ":audio_processing_c", - ] if (apm_debug_dump) { defines += [ "WEBRTC_APM_DEBUG_DUMP=1" ] @@ -451,10 +449,8 @@ if (rtc_build_with_neon) { } deps = [ - "../../common_audio", - ] - public_deps = [ ":audio_processing_neon_c", + "../../common_audio", ] if (apm_debug_dump) { @@ -498,7 +494,7 @@ if (rtc_build_with_neon) { if (rtc_include_tests) { group("audio_processing_tests") { testonly = true - public_deps = [ + deps = [ ":audioproc_test_utils", ":click_annotate", ":nonlinear_beamformer_test", @@ -506,11 +502,11 @@ if (rtc_include_tests) { ] if (rtc_enable_intelligibility_enhancer) { - public_deps += [ ":intelligibility_proc" ] + deps += [ ":intelligibility_proc" ] } if (rtc_enable_protobuf) { - public_deps += [ + deps += [ ":audioproc_f", ":audioproc_unittest_proto", ":unpack_aecdump",