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

Side by Side Diff: examples/audio_play_test/BUILD.gn

Issue 1406393004: Add two demos which exercise the audio server. (Closed) Base URL: https://github.com/domokit/mojo.git@change6
Patch Set: fix 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 unified diff | Download patch
« no previous file with comments | « examples/BUILD.gn ('k') | examples/audio_play_test/play_tone.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//mojo/public/mojo_application.gni")
6
7 group("audio_play_test") {
8 deps = [
9 ":play_wav",
10 ":play_tone",
11 ]
12 }
13
14 mojo_native_application("play_wav") {
15 deps = [
16 "//mojo/public/cpp/application:standalone",
17 "//mojo/public/cpp/system",
18 "//mojo/public/cpp/utility",
19 "//mojo/services/media/audio/interfaces",
20 "//mojo/services/media/common/cpp",
21 "//mojo/services/media/common/interfaces",
22 "//mojo/services/network/interfaces",
23 "//services/media/common",
24 ]
25
26 sources = [
27 "play_wav.cc",
28 ]
29 }
30
31 mojo_native_application("play_tone") {
32 deps = [
33 "//mojo/public/cpp/application:standalone",
34 "//mojo/public/cpp/utility",
35 "//mojo/services/media/audio/interfaces",
36 "//mojo/services/media/common/cpp",
37 "//mojo/services/media/common/interfaces",
38 "//services/media/common",
39 ]
40
41 sources = [
42 "play_tone.cc",
43 ]
44 }
OLDNEW
« no previous file with comments | « examples/BUILD.gn ('k') | examples/audio_play_test/play_tone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698