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

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

Issue 1308153005: [Chromecast] Plumbs raw audio through CMA backend. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed cast_shell compile error Created 5 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 | « chromecast/media/DEPS ('k') | chromecast/media/audio/cast_audio_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/media/audio/BUILD.gn
diff --git a/chromecast/base/metrics/BUILD.gn b/chromecast/media/audio/BUILD.gn
similarity index 52%
copy from chromecast/base/metrics/BUILD.gn
copy to chromecast/media/audio/BUILD.gn
index 191b30413c1490b945589d01d9831cb65a611767..87a6caab306b12b799a9912998fa16e87b1b8507 100644
--- a/chromecast/base/metrics/BUILD.gn
+++ b/chromecast/media/audio/BUILD.gn
@@ -2,19 +2,24 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("metrics") {
+source_set("audio") {
sources = [
- "cast_histograms.h",
- "cast_metrics_helper.cc",
- "cast_metrics_helper.h",
- "grouped_histogram.cc",
- "grouped_histogram.h",
+ "cast_audio_manager.cc",
+ "cast_audio_manager.h",
+ "cast_audio_manager_factory.cc",
+ "cast_audio_manager_factory.h",
+ "cast_audio_output_stream.cc",
+ "cast_audio_output_stream.h",
]
configs += [ "//chromecast:config" ]
+ public_deps = [
+ "//chromecast/public/media",
+ ]
+
deps = [
- "//base",
+ "//media",
]
}
@@ -22,17 +27,13 @@ source_set("test_support") {
testonly = true
sources = [
- "cast_metrics_test_helper.cc",
- "cast_metrics_test_helper.h",
+ "cast_audio_output_stream_unittest.cc",
]
- public_deps = [
- ":metrics",
- ]
+ configs += [ "//chromecast:config" ]
deps = [
- "//base",
+ ":audio",
+ "//testing/gtest",
]
-
- configs += [ "//chromecast:config" ]
}
« no previous file with comments | « chromecast/media/DEPS ('k') | chromecast/media/audio/cast_audio_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698