From b5e51ed41501ec8da4c8425da95bc44d861db55d Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Sat, 25 Jun 2022 01:09:14 +0200 Subject: [PATCH] Remove usage of public_deps from audio_coding. Bug: b/36882554 Change-Id: Id3a40a455d7f1975044e707765f938ed47d2158e Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/266742 Auto-Submit: Mirko Bonadei Commit-Queue: Mirko Bonadei Reviewed-by: Oleh Prypin Cr-Commit-Position: refs/heads/main@{#37329} --- modules/audio_coding/BUILD.gn | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/audio_coding/BUILD.gn b/modules/audio_coding/BUILD.gn index ba6c2fdc0c..e411819d2a 100644 --- a/modules/audio_coding/BUILD.gn +++ b/modules/audio_coding/BUILD.gn @@ -606,6 +606,7 @@ rtc_library("isac_fix_c") { deps = [ ":isac_bwinfo", ":isac_common", + ":isac_fix_common", "../../api/audio_codecs:audio_codecs_api", "../../common_audio", "../../common_audio:common_audio_c", @@ -616,8 +617,6 @@ rtc_library("isac_fix_c") { "../third_party/fft", ] - public_deps = [ ":isac_fix_common" ] # no-presubmit-check TODO(webrtc:8603) - if (rtc_build_with_neon) { deps += [ ":isac_neon" ] @@ -1616,6 +1615,7 @@ if (rtc_include_tests) { testonly = true defines = [] deps = [ + ":isac_fix_common", "../../rtc_base:macromagic", "../../test:fileutils", ] @@ -2066,6 +2066,7 @@ if (rtc_include_tests) { ":isac_c", ":isac_common", ":isac_fix", + ":isac_fix_common", ":legacy_encoded_audio_frame", ":mocks", ":neteq",