From d4e5206e5e3172f63614f4d9c171d311372706ee Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Wed, 18 Jul 2018 17:37:28 +0200 Subject: [PATCH] Clean up unneeded includes in common_audio/BUILD.gn. WebRTC internal headers are always included starting from the root (e.g. #include "common_audio/..."), so there is no need to specify the include_dirs removed by this CL. Bug: webrtc:9538 Change-Id: Id2c070dad48c88dece3fea59e9dd0e64695ee298 Reviewed-on: https://webrtc-review.googlesource.com/89390 Reviewed-by: Oleh Prypin Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/master@{#24035} --- common_audio/BUILD.gn | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/common_audio/BUILD.gn b/common_audio/BUILD.gn index 57cf69952d..465bf9cb0e 100644 --- a/common_audio/BUILD.gn +++ b/common_audio/BUILD.gn @@ -10,14 +10,6 @@ import("../webrtc.gni") visibility = [ ":*" ] -config("common_audio_config") { - include_dirs = [ - "resampler/include", - "signal_processing/include", - "vad/include", - ] -} - rtc_static_library("common_audio") { visibility += [ "*" ] sources = [ @@ -80,8 +72,6 @@ rtc_static_library("common_audio") { deps += [ ":common_audio_neon" ] } - public_configs = [ ":common_audio_config" ] - if (current_cpu == "x86" || current_cpu == "x64") { deps += [ ":common_audio_sse2" ] } @@ -197,7 +187,6 @@ rtc_source_set("common_audio_c") { ] } - public_configs = [ ":common_audio_config" ] deps = [ ":common_audio_c_arm_asm", ":common_audio_cc", @@ -227,7 +216,6 @@ rtc_source_set("common_audio_cc") { "signal_processing/dot_product_with_scale.h", ] - public_configs = [ ":common_audio_config" ] deps = [ "..:webrtc_common", "../:typedefs",