github.com/stackb/rules_proto@v0.0.0-20240221195024-5428336c51f1/pkg/plugintest/BUILD.bazel (about)

     1  load("@io_bazel_rules_go//go:def.bzl", "go_library")
     2  
     3  go_library(
     4      name = "plugintest",
     5      testonly = True,
     6      srcs = [
     7          "case.go",
     8          "doc.go",
     9          "utils.go",
    10      ],
    11      importpath = "github.com/stackb/rules_proto/pkg/plugintest",
    12      visibility = ["//visibility:public"],
    13      deps = [
    14          "//pkg/protoc",
    15          "@bazel_gazelle//label:go_default_library",
    16          "@bazel_gazelle//rule:go_default_library",
    17          "@com_github_google_go_cmp//cmp",
    18          "@com_github_google_go_cmp//cmp/cmpopts",
    19      ],
    20  )
    21  
    22  filegroup(
    23      name = "all_files",
    24      testonly = True,
    25      srcs = [
    26          "BUILD.bazel",
    27      ] + glob(["*.go"]),
    28      visibility = ["//pkg:__pkg__"],
    29  )