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

Unified Diff: webrtc/audio/utility/BUILD.gn

Issue 2424173003: Move functionality out from AudioFrame and into AudioFrameOperations. (Closed)
Patch Set: Include order & DCHECKs. Created 4 years 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/audio/BUILD.gn ('k') | webrtc/audio/utility/audio_frame_operations.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio/utility/BUILD.gn
diff --git a/webrtc/audio/utility/BUILD.gn b/webrtc/audio/utility/BUILD.gn
index f6c62d53ef0a78dd6dd5ec207c21404f4562fd51..d85b30d1c028f55f5c7e8450b57e1331f7d07283 100644
--- a/webrtc/audio/utility/BUILD.gn
+++ b/webrtc/audio/utility/BUILD.gn
@@ -8,4 +8,20 @@
import("../../build/webrtc.gni")
group("utility") {
+ public_deps = [
+ ":audio_frame_operations",
+ ]
+}
+
+rtc_static_library("audio_frame_operations") {
+ sources = [
+ "audio_frame_operations.cc",
+ "audio_frame_operations.h",
+ ]
+
+ deps = [
+ "../..:webrtc_common",
+ "../../base:rtc_base_approved",
+ "../../modules/audio_coding:audio_format_conversion",
+ ]
}
« no previous file with comments | « webrtc/audio/BUILD.gn ('k') | webrtc/audio/utility/audio_frame_operations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698