Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Unified Diff: webrtc/common_audio/BUILD.gn

Issue 2361623004: GN: Change rtc_source_set targets --> rtc_static_library (Closed)
Patch Set: Restored accidental rebase errors. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/call/BUILD.gn ('k') | webrtc/common_video/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
« no previous file with comments | « webrtc/call/BUILD.gn ('k') | webrtc/common_video/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698