blob: fe32de1fa6912e99059516a15c0e9d8c53f38978 [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/package.gni")
executable("bin") {
output_name = "time"
sources = [
"time.c",
]
deps = [
"//zircon/public/lib/fdio",
]
libs = [
"zircon",
]
}
package("time") {
deprecated_system_image = true
deps = [
":bin",
]
binaries = [ {
name = "time"
} ]
}