blob: 0a6a5560425d5347ace2fe4b5eb8a41c40476381 [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 = [
"//garnet/public/lib/component/go/src/app",
"//garnet/tests/fidl-changes:fidl.test.after($go_toolchain)",
"//garnet/tests/fidl-changes:fidl.test.before($go_toolchain)",
"//garnet/tests/fidl-changes:fidl.test.during($go_toolchain)",
]
}