blob: 2b189668777ed7bc3e937980f15cdbb86c0f85f5 [file] [log] [blame]
#Copyright 2017 The Fuchsia 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("//build/package.gni")
package("simple_sine") {
deps = [
":simple_sine_bin",
]
binaries = [
{
name = "simple_sine"
shell = true
},
]
meta = [
{
path = rebase_path("meta/simple_sine.cmx")
dest = "simple_sine.cmx"
},
]
}
executable("simple_sine_bin") {
output_name = "simple_sine"
sources = [
"simple_sine.cc",
"simple_sine.h",
]
deps = [
"//garnet/public/lib/fsl",
"//sdk/fidl/fuchsia.media",
"//sdk/lib/sys/cpp",
"//src/lib/fxl",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/fzl",
]
}