blob: 26c2be21d36ca4adc4ca543d0868b069c08b8590 [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/lib/fsl",
"//sdk/fidl/fuchsia.timezone",
"//sdk/lib/sys/cpp",
"//src/lib/fxl",
"//zircon/public/lib/async-loop-cpp",
]
}
package("tz-util") {
deps = [
":bin",
]
binaries = [
{
name = "tz-util"
shell = true
},
]
}