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

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

Issue 1986303002: Motown: Use new TimelineTransform and related definitions (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fixes per feedback. Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//mojo/public/mojo_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 6
7 group("audio_play_test") { 7 group("audio_play_test") {
8 deps = [ 8 deps = [
9 ":play_tone", 9 ":play_tone",
10 ":play_wav", 10 ":play_wav",
11 ] 11 ]
12 } 12 }
13 13
14 mojo_native_application("play_wav") { 14 mojo_native_application("play_wav") {
15 deps = [ 15 deps = [
16 "//mojo/public/cpp/application:standalone", 16 "//mojo/public/cpp/application:standalone",
17 "//mojo/public/cpp/system", 17 "//mojo/public/cpp/system",
18 "//mojo/public/cpp/utility", 18 "//mojo/public/cpp/utility",
19 "//mojo/services/media/audio/interfaces", 19 "//mojo/services/media/audio/interfaces",
20 "//mojo/services/media/common/cpp", 20 "//mojo/services/media/common/cpp",
21 "//mojo/services/media/common/interfaces", 21 "//mojo/services/media/common/interfaces",
22 "//mojo/services/media/core/interfaces",
22 "//mojo/services/network/interfaces", 23 "//mojo/services/network/interfaces",
23 ] 24 ]
24 25
25 sources = [ 26 sources = [
26 "play_wav.cc", 27 "play_wav.cc",
27 ] 28 ]
28 } 29 }
29 30
30 mojo_native_application("play_tone") { 31 mojo_native_application("play_tone") {
31 deps = [ 32 deps = [
32 "//mojo/public/cpp/application:standalone", 33 "//mojo/public/cpp/application:standalone",
33 "//mojo/public/cpp/utility", 34 "//mojo/public/cpp/utility",
34 "//mojo/services/media/audio/interfaces", 35 "//mojo/services/media/audio/interfaces",
35 "//mojo/services/media/common/cpp", 36 "//mojo/services/media/common/cpp",
36 "//mojo/services/media/common/interfaces", 37 "//mojo/services/media/common/interfaces",
38 "//mojo/services/media/core/interfaces",
37 ] 39 ]
38 40
39 sources = [ 41 sources = [
40 "play_tone.cc", 42 "play_tone.cc",
41 ] 43 ]
42 } 44 }
OLDNEW
« no previous file with comments | « no previous file | examples/audio_play_test/play_tone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698