blob: 0038082049461272e3ca5211a29e221fb88fab65 [file] [log] [blame] [edit]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["finder.go"],
importpath = "github.com/bazelbuild/bazel-gazelle/internal/wspace",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
size = "small",
srcs = ["finder_test.go"],
embed = [":go_default_library"],
)
filegroup(
name = "all_files",
testonly = True,
srcs = [
"BUILD.bazel",
"finder.go",
"finder_test.go",
],
visibility = ["//visibility:public"],
)