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

Unified Diff: chromecast/media/base/BUILD.gn

Issue 1494713002: [Chromecast] Move CastAudioDecoder out to chromecast/media/cma/decoder (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 5 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 | « no previous file | chromecast/media/base/DEPS » ('j') | chromecast/media/base/cast_audio_decoder.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/media/base/BUILD.gn
diff --git a/chromecast/media/base/BUILD.gn b/chromecast/media/base/BUILD.gn
index 7d02a3a335f87e1190db87f2f9cedfa19c847a72..f0d85fe3aa8e69f4c5d2a006c08e577fd7112aa2 100644
--- a/chromecast/media/base/BUILD.gn
+++ b/chromecast/media/base/BUILD.gn
@@ -41,6 +41,35 @@ source_set("key_systems") {
]
}
+source_set("decoder_buffer") {
+ sources = [
+ "decoder_buffer_base.h",
+ ]
+
+ public_deps = [
+ "//chromecast/public/media",
+ ]
+
+ deps = [
+ "//base",
+ ]
+}
+
+source_set("decoder") {
+ sources = [
+ "cast_audio_decoder.h",
+ "cast_audio_decoder_android.cc",
+ "cast_audio_decoder_linux.cc",
+ ]
+
+ deps = [
+ ":decoder_buffer",
+ "//base",
+ "//media",
+ "//media:shared_memory_support",
+ ]
+}
+
# TODO(slan): See if the dependency on //media can be broken.
source_set("base") {
sources = [
« no previous file with comments | « no previous file | chromecast/media/base/DEPS » ('j') | chromecast/media/base/cast_audio_decoder.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698