| Index: examples/audio_play_test/BUILD.gn
|
| diff --git a/examples/audio_play_test/BUILD.gn b/examples/audio_play_test/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5b954557f071a1c283dea431b8648280c6762523
|
| --- /dev/null
|
| +++ b/examples/audio_play_test/BUILD.gn
|
| @@ -0,0 +1,44 @@
|
| +# Copyright 2015 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import("//mojo/public/mojo_application.gni")
|
| +
|
| +group("audio_play_test") {
|
| + deps = [
|
| + ":play_wav",
|
| + ":play_tone",
|
| + ]
|
| +}
|
| +
|
| +mojo_native_application("play_wav") {
|
| + deps = [
|
| + "//mojo/public/cpp/application:standalone",
|
| + "//mojo/public/cpp/system",
|
| + "//mojo/public/cpp/utility",
|
| + "//mojo/services/media/audio/interfaces",
|
| + "//mojo/services/media/common/cpp",
|
| + "//mojo/services/media/common/interfaces",
|
| + "//mojo/services/network/interfaces",
|
| + "//services/media/common",
|
| + ]
|
| +
|
| + sources = [
|
| + "play_wav.cc",
|
| + ]
|
| +}
|
| +
|
| +mojo_native_application("play_tone") {
|
| + deps = [
|
| + "//mojo/public/cpp/application:standalone",
|
| + "//mojo/public/cpp/utility",
|
| + "//mojo/services/media/audio/interfaces",
|
| + "//mojo/services/media/common/cpp",
|
| + "//mojo/services/media/common/interfaces",
|
| + "//services/media/common",
|
| + ]
|
| +
|
| + sources = [
|
| + "play_tone.cc",
|
| + ]
|
| +}
|
|
|