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