aboutsummaryrefslogtreecommitdiff
path: root/common_audio
diff options
context:
space:
mode:
authorMirko Bonadei <mbonadei@webrtc.org>2018-02-05 15:50:41 +0100
committerCommit Bot <commit-bot@chromium.org>2018-02-06 09:44:20 +0000
commitdbbb33cd0094ff4f24b42f3087d0587cd070ee0c (patch)
tree97530ec9eb3987d5838cbae13de3274501aef99e /common_audio
parent6114c243847adf9a5dc332678066fe63c0e510c0 (diff)
downloadwebrtc-dbbb33cd0094ff4f24b42f3087d0587cd070ee0c.tar.gz
Stop using public_deps in common_audio.
Bug: webrtc:8603 Change-Id: I315311977f2a75476a7028b8d3eaf3c98caf4178 Reviewed-on: https://webrtc-review.googlesource.com/47920 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#21902}
Diffstat (limited to 'common_audio')
-rw-r--r--common_audio/BUILD.gn12
1 files changed, 5 insertions, 7 deletions
diff --git a/common_audio/BUILD.gn b/common_audio/BUILD.gn
index 926a85fd21..3d6109a332 100644
--- a/common_audio/BUILD.gn
+++ b/common_audio/BUILD.gn
@@ -60,6 +60,7 @@ rtc_static_library("common_audio") {
]
deps = [
+ ":common_audio_c",
":sinc_resampler",
"..:webrtc_common",
"../:typedefs",
@@ -70,9 +71,6 @@ rtc_static_library("common_audio") {
"../system_wrappers",
"../system_wrappers:cpu_features_api",
]
- public_deps = [
- ":common_audio_c",
- ]
defines = []
if (rtc_use_openmax_dl) {
@@ -136,6 +134,7 @@ rtc_source_set("common_audio_c_arm_asm") {
}
rtc_source_set("common_audio_c") {
+ visibility += webrtc_default_visibility
sources = [
"fft4g.c",
"fft4g.h",
@@ -348,19 +347,17 @@ if (rtc_build_with_neon) {
}
deps = [
+ ":common_audio_neon_c",
":fir_filter",
":sinc_resampler",
"../rtc_base:checks",
"../rtc_base:rtc_base_approved",
"../system_wrappers",
]
-
- public_deps = [
- ":common_audio_neon_c",
- ]
}
rtc_source_set("common_audio_neon_c") {
+ visibility += webrtc_default_visibility
sources = [
"signal_processing/cross_correlation_neon.c",
"signal_processing/downsample_fast_neon.c",
@@ -447,6 +444,7 @@ if (rtc_include_tests) {
deps = [
":common_audio",
+ ":common_audio_c",
":fir_filter",
":fir_filter_factory",
":sinc_resampler",