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

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: 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
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 "//base",
17 "//mojo/public/cpp/application:standalone",
18 "//mojo/public/cpp/system",
19 "//mojo/public/cpp/utility",
20 "//mojo/services/media/audio/interfaces",
21 "//mojo/services/media/common/cpp",
22 "//mojo/services/media/common/interfaces",
23 "//mojo/services/network/interfaces",
24 "//services/media/common",
25 ]
26
27 sources = [
28 "play_wav.cc",
29 ]
30 }
31
32 mojo_native_application("play_tone") {
33 deps = [
34 "//base",
35 "//mojo/public/cpp/application:standalone",
36 "//mojo/public/cpp/utility",
37 "//mojo/services/media/audio/interfaces",
38 "//mojo/services/media/common/cpp",
39 "//mojo/services/media/common/interfaces",
40 "//services/media/common",
41 ]
42
43 sources = [
44 "play_tone.cc",
45 ]
46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698