blob: 792ea383ec99c6b74a4216bf054845186c2421da [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/go/go_binary.gni")
import("//build/package.gni")
go_binary("thinfs_bin") {
output_name = "thinfs"
gopackage = "thinfs/cmd/thinfs"
go_dependencies = [ {
package = "thinfs"
source = "//garnet/go/src/thinfs"
} ]
}
package("thinfs") {
system_image = true
deps = [
":thinfs_bin",
]
binaries = [ {
name = "thinfs"
} ]
}