github.phpd.cn/thought-machine/please@v12.2.0+incompatible/src/run/BUILD (about)

     1  go_library(
     2      name = 'run',
     3      srcs = [
     4          'pool.go',
     5          'run_step.go',
     6      ],
     7      deps = [
     8          '//src/build',
     9          '//src/core',
    10          '//src/output',
    11          '//third_party/go:errgroup',
    12          '//third_party/go:logging',
    13      ],
    14      visibility = ['PUBLIC'],
    15  )
    16  
    17  go_test(
    18      name = 'run_test',
    19      srcs = ['run_test.go'],
    20      data = ['test_data'],
    21      deps = [
    22          ':run',
    23          '//third_party/go:testify',
    24      ],
    25  )
    26  
    27  go_test(
    28      name = 'pool_test',
    29      srcs = ['pool_test.go'],
    30      deps = [
    31          ':run',
    32          '//third_party/go:testify',
    33      ],
    34  )