| Index: webrtc/common_audio/BUILD.gn
|
| diff --git a/webrtc/common_audio/BUILD.gn b/webrtc/common_audio/BUILD.gn
|
| index 08a97b2507ffa5690145c30ecc202ddb48d3ec23..6258fb45527f4a57ef71e40ae70b64bd62866607 100644
|
| --- a/webrtc/common_audio/BUILD.gn
|
| +++ b/webrtc/common_audio/BUILD.gn
|
| @@ -17,7 +17,7 @@ config("common_audio_config") {
|
| ]
|
| }
|
|
|
| -rtc_source_set("common_audio") {
|
| +rtc_static_library("common_audio") {
|
| sources = [
|
| "audio_converter.cc",
|
| "audio_converter.h",
|
| @@ -186,7 +186,7 @@ rtc_source_set("common_audio") {
|
| }
|
|
|
| if (current_cpu == "x86" || current_cpu == "x64") {
|
| - rtc_source_set("common_audio_sse2") {
|
| + rtc_static_library("common_audio_sse2") {
|
| sources = [
|
| "fir_filter_sse.cc",
|
| "resampler/sinc_resampler_sse.cc",
|
| @@ -205,7 +205,7 @@ if (current_cpu == "x86" || current_cpu == "x64") {
|
| }
|
|
|
| if (rtc_build_with_neon) {
|
| - rtc_source_set("common_audio_neon") {
|
| + rtc_static_library("common_audio_neon") {
|
| sources = [
|
| "fir_filter_neon.cc",
|
| "resampler/sinc_resampler_neon.cc",
|
|
|