blob: 5e551be2787b2a628928be06f0d34b6d9d470a5a [file] [log] [blame] [edit]
# 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 = "uname"
sources = [ "uname.c" ]
deps = [ "//src/zircon/lib/zircon" ]
}
package("uname") {
deps = [ ":bin" ]
binaries = [
{
name = "uname"
shell = true
},
]
}