blob: 566dc26a7abf4369a2182b9983582908dc1b5ec4 [file] [log] [blame]
# Copyright 2018 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/go/toolchain.gni")
go_binary("go") {
output_name = "fidl_changes_go"
gopackage = "fidl_changes_go_lib"
deps = [ ":fidl_changes_go_lib" ]
}
go_library("fidl_changes_go_lib") {
name = "fidl_changes_go_lib"
deps = [
"../:fidl.test.after($go_toolchain)",
"../:fidl.test.before($go_toolchain)",
"../:fidl.test.during($go_toolchain)",
"//src/lib/component",
]
}