blob: 552bb3b01963c3e70c7b1078eba7dbdba6b0ded9 [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")
executable("bin") {
output_name = "tz-util"
sources = [
"tz-util.cc",
]
deps = [
"//sdk/fidl/fuchsia.timezone",
"//garnet/public/lib/component/cpp",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
"//zircon/public/lib/async-loop-cpp",
]
}
package("tz-util") {
deps = [
":bin",
]
binaries = [
{
name = "tz-util"
shell = true
},
]
}