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

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

Issue 1419593007: Add an ALSA output to the motown audio server. (Closed) Base URL: https://github.com/domokit/mojo.git@change5
Patch Set: fixing android build Created 5 years, 1 month 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 | services/media/audio/audio_output_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/media/audio/BUILD.gn
diff --git a/services/media/audio/BUILD.gn b/services/media/audio/BUILD.gn
index 7cddf1f7617553efe91df13dd6bb9069c158b073..aa5402b6ec64b4fc29494355d6d1e369e29bbe24 100644
--- a/services/media/audio/BUILD.gn
+++ b/services/media/audio/BUILD.gn
@@ -37,4 +37,11 @@ mojo_native_application("audio_server") {
]
libs = []
+
+ if (is_linux && !is_fnl && !is_android) {
+ sources += [ "platform/linux/alsa_output.cc" ]
+ libs += [ "asound" ]
+ } else {
+ sources += [ "platform/stubs/alsa_output_stub.cc" ]
+ }
}
« no previous file with comments | « no previous file | services/media/audio/audio_output_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698