blob: 3f1683da91fe01b292ed173ad3dc4c7ab40be42f [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.
import("//build/go/go_binary.gni")
import("//build/go/go_library.gni")
import("//build/testing/host_test_data.gni")
go_library("main") {
deps = [
"hlcpp",
"measurer",
"rust",
"//tools/fidl/lib/fidlgen",
]
sources = [ "main.go" ]
}
go_binary("measure-tape") {
library = ":main"
}
install_host_tools("host") {
deps = [ ":measure-tape" ]
outputs = [ "measure-tape" ]
}