blob: 711fcbad57361952a3224f6539a3b34610f39222 [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("sync_sine") {
deps = [
":sync_sine_bin",
]
binaries = [
{
name = "sync_sine"
shell = true
},
]
meta = [
{
path = rebase_path("meta/sync_sine.cmx")
dest = "sync_sine.cmx"
},
]
}
executable("sync_sine_bin") {
output_name = "sync_sine"
sources = [
"main.cc",
"sync_sine.cc",
"sync_sine.h",
]
deps = [
"//sdk/fidl/fuchsia.media",
"//sdk/lib/sys/cpp",
"//src/lib/fxl",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/fzl",
]
}