github.com/tiagovtristao/plz@v13.4.0+incompatible/src/follow/BUILD (about)

     1  go_library(
     2      name = "follow",
     3      srcs = [
     4          "grpc_client.go",
     5          "grpc_server.go",
     6          "marshalling.go",
     7          "resources.go",
     8      ],
     9      visibility = ["PUBLIC"],
    10      deps = [
    11          "//src/core",
    12          "//src/follow/proto:build_event",
    13          "//src/output",
    14          "//third_party/go:grpc",
    15          "//third_party/go:logging",
    16          "//third_party/go:net",
    17          "//third_party/go:psutil",
    18      ],
    19  )
    20  
    21  go_test(
    22      name = "grpc_test",
    23      srcs = ["grpc_test.go"],
    24      # Doesn't seem to work on CircleCI - the client is inexplicably unable to connect
    25      # to the server, even though that's running. Maybe something related to its network config?
    26      labels = ["no_circleci"],
    27      deps = [
    28          ":follow",
    29          "//src/cli",
    30          "//src/core",
    31          "//third_party/go:testify",
    32      ],
    33  )