github.com/tiagovtristao/plz@v13.4.0+incompatible/tools/cache/cluster/BUILD (about)

     1  go_library(
     2      name = "cluster",
     3      srcs = ["cluster.go"],
     4      visibility = ["//tools/cache/..."],
     5      deps = [
     6          "//src/cache/proto:rpc_cache",
     7          "//src/cache/tools",
     8          "//third_party/go:grpc",
     9          "//third_party/go:grpc-middleware",
    10          "//third_party/go:logging",
    11          "//third_party/go:memberlist",
    12      ],
    13  )
    14  
    15  go_test(
    16      name = "cluster_test",
    17      srcs = ["cluster_test.go"],
    18      flaky = True,
    19      labels = ["no_circleci"],
    20      sandbox = False,
    21      deps = [
    22          ":cluster",
    23          "//src/cache/proto:rpc_cache",
    24          "//src/cache/tools",
    25          "//third_party/go:grpc",
    26          "//third_party/go:net",
    27          "//third_party/go:testify",
    28      ],
    29  )