blob: 83e832da1cda2fb44607140d19dedbdc4666548a [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 = [
"//garnet/public/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
},
]
}