blob: b9c79252a718061d15fed8549ae95181164acf3c [file] [log] [blame]
# Copyright 2016 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/components.gni")
executable("bin") {
output_name = "time"
sources = [ "time.c" ]
deps = [
"//sdk/lib/fdio",
"//src/zircon/lib/zircon",
]
}
fuchsia_shell_package("time") {
deps = [ ":bin" ]
}