blob: c7dd34de7d0b062b408c129315080ea08ffbcf0c [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 = [
"//sdk/fidl/fuchsia.media",
"//sdk/lib/sys/cpp",
"//sdk/lib/syslog/cpp",
"//src/lib/fsl",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/fzl",
]
# TODO(fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}