github.phpd.cn/thought-machine/please@v12.2.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      deps = [
    10          '//src/core',
    11          '//src/follow/proto:build_event',
    12          '//src/output',
    13          '//third_party/go:net',
    14          '//third_party/go:grpc',
    15          '//third_party/go:logging',
    16          '//third_party/go:psutil',
    17      ],
    18      visibility = ['PUBLIC'],
    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  )