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

Unified Diff: webrtc/modules/audio_processing/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/modules/audio_mixer/BUILD.gn ('k') | webrtc/modules/bitrate_controller/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/BUILD.gn
diff --git a/webrtc/modules/audio_processing/BUILD.gn b/webrtc/modules/audio_processing/BUILD.gn
index 2387c2e85b375f819b50960969716978c14a1240..54c33e346c87f0e1f6160ea4e38599cad44a5b14 100644
--- a/webrtc/modules/audio_processing/BUILD.gn
+++ b/webrtc/modules/audio_processing/BUILD.gn
@@ -17,7 +17,7 @@ declare_args() {
aec_untrusted_delay_for_testing = false
}
-rtc_source_set("audio_processing") {
+rtc_static_library("audio_processing") {
sources = [
"aec/aec_core.cc",
"aec/aec_core.h",
@@ -253,7 +253,7 @@ if (rtc_enable_protobuf) {
}
if (current_cpu == "x86" || current_cpu == "x64") {
- rtc_source_set("audio_processing_sse2") {
+ rtc_static_library("audio_processing_sse2") {
sources = [
"aec/aec_core_sse2.cc",
"aec/aec_rdft_sse2.cc",
@@ -272,7 +272,7 @@ if (current_cpu == "x86" || current_cpu == "x64") {
}
if (rtc_build_with_neon) {
- rtc_source_set("audio_processing_neon") {
+ rtc_static_library("audio_processing_neon") {
sources = [
"aec/aec_core_neon.cc",
"aec/aec_rdft_neon.cc",
@@ -453,7 +453,7 @@ if (rtc_include_tests) {
proto_out_dir = "webrtc/modules/audio_processing"
}
- rtc_source_set("audioproc_protobuf_utils") {
+ rtc_static_library("audioproc_protobuf_utils") {
sources = [
"test/protobuf_utils.cc",
"test/protobuf_utils.h",
« no previous file with comments | « webrtc/modules/audio_mixer/BUILD.gn ('k') | webrtc/modules/bitrate_controller/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698