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",