blob: bf5931bef4990d4cb0287a972ef087bead0c1f60 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["build.go"],
importpath = "github.com/bazelbuild/rules_go/tests/package_named_build/build",
)
go_test(
name = "go_default_xtest",
size = "small",
srcs = ["build_test.go"],
deps = [
":go_default_library",
],
)