blob: 995024cb123bc67f5c5799979425cabe152bae35 [file] [log] [blame]
# Copyright 2019 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/go/go_library.gni")
# lib contains all of the softare delivery binaries dependencies used to make
# the grand unified binary.
go_library("lib") {
name = "fuchsia.googlesource.com/grand_unified_binary"
deps = [
"//garnet/go/src/pmd",
"//garnet/go/src/amber/system_updater:lib",
"//garnet/go/src/amber:lib",
"//garnet/go/src/netstack:netstack_lib"
]
}
# The grand unified software delivery binary that contains:
# pkgsvr
# amber
# amber_ctl
# system_updater
go_binary("grand_unified_binary") {
gopackage = "fuchsia.googlesource.com/grand_unified_binary"
deps = [
":lib"
]
}