github.com/abayer/test-infra@v0.0.5/mungegithub/mungers/matchers/comment/BUILD.bazel (about)

     1  package(default_visibility = ["//visibility:public"])
     2  
     3  load(
     4      "@io_bazel_rules_go//go:def.bzl",
     5      "go_library",
     6      "go_test",
     7  )
     8  
     9  go_test(
    10      name = "go_default_test",
    11      srcs = [
    12          "command_test.go",
    13          "comment_test.go",
    14          "finder_test.go",
    15          "interactions_test.go",
    16          "notification_test.go",
    17          "operators_test.go",
    18          "pinger_test.go",
    19      ],
    20      embed = [":go_default_library"],
    21  )
    22  
    23  go_library(
    24      name = "go_default_library",
    25      srcs = [
    26          "command.go",
    27          "comment.go",
    28          "finder.go",
    29          "interactions.go",
    30          "notification.go",
    31          "operators.go",
    32          "pinger.go",
    33      ],
    34      importpath = "k8s.io/test-infra/mungegithub/mungers/matchers/comment",
    35      deps = [
    36          "//mungegithub/github:go_default_library",
    37          "//vendor/github.com/google/go-github/github:go_default_library",
    38      ],
    39  )
    40  
    41  filegroup(
    42      name = "package-srcs",
    43      srcs = glob(["**"]),
    44      tags = ["automanaged"],
    45      visibility = ["//visibility:private"],
    46  )
    47  
    48  filegroup(
    49      name = "all-srcs",
    50      srcs = [":package-srcs"],
    51      tags = ["automanaged"],
    52  )