blob: 2bcd1ba3ef54d56a33d1dc1d08b21cb8dd425bda [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",
"//sdk/lib/syslog/cpp",
"//src/lib/fxl",
"//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" ]
}