blob: 399bc593a18aced24837b0c776eddfd3d764ecc8 [file] [log] [blame]
# Copyright 2020 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.
visibility = [ "$cobalt_root/*" ]
import("//build/go/go_binary.gni")
import("//build/go/go_library.gni")
import("//build/go/go_test.gni")
go_library("main") {
name = target_name
sources = [ "error_calculator_main.go" ]
source_dir = "."
}
go_binary("bin") {
gopackage = "main"
output_name = "error_calculator"
deps = [
":main",
"$cobalt_root/src/bin/config_parser/src:privacy",
"$cobalt_root/src/bin/config_parser/src:registry_util",
"$cobalt_root/src/registry:cobalt_registry_proto_go",
"//third_party/golibs:github.com/golang/glog",
]
}