blob: 07caa71bf6fb916fe8d2c0e0eb774f71b768ef49 [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("//src/sys/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" ]
}