blob: 616c0f4a2299293b0dc471825945d7d4db9903f9 [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")
go_library("main") {
source_dir = "cmd"
sources = [ "main.go" ]
deps = [
"//tools/botanist:constants",
"//tools/lib/color",
"//tools/lib/iomisc",
"//tools/lib/logger",
"//tools/lib/osmisc",
"//tools/testing/testrunner:constants",
]
}
go_binary("seriallistener") {
library = ":main"
}