blob: cda0819a41e1d3bd7b42a935079b569f643ffe28 [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/host.gni")
go_library("lib") {
name = "gen"
}
go_binary("regen_fidl_benchmark_suite") {
gopackage = "gen"
deps = [ ":lib" ]
}
install_host_tools("host") {
deps = [ ":regen_fidl_benchmark_suite" ]
outputs = [ "regen_fidl_benchmark_suite" ]
}