blob: aac34b0538d317ea74c84c1e69d3d421c7379887 [file] [log] [blame]
# Copyright 2021 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/components/fuchsia_unittest_package.gni")
import("//build/fidl/fidl.gni")
import("//build/go/go_library.gni")
import("//build/go/go_test.gni")
import("//build/go/toolchain.gni")
go_library("gopkg") {
testonly = true
deps = [
":fidl.go.types_go($go_toolchain)",
"//third_party/golibs:github.com/google/go-cmp",
]
sources = [
"bits_test.go",
"enums_test.go",
"stringer_test.go",
"tables_test.go",
"unions_test.go",
]
}
go_test("fidl-go-bindings-test") {
library = ":gopkg"
}
fidl("fidl.go.types") {
testonly = true
sources = [ "types.test.fidl" ]
}
fuchsia_unittest_package("go_bindings_test") {
deps = [ ":fidl-go-bindings-test" ]
}