github.com/sercand/please@v13.4.0+incompatible/src/run/BUILD (about)

     1  go_library(
     2      name = "run",
     3      srcs = [
     4          "pool.go",
     5          "run_step.go",
     6      ],
     7      visibility = ["PUBLIC"],
     8      deps = [
     9          "//src/build",
    10          "//src/core",
    11          "//src/output",
    12          "//third_party/go:errgroup",
    13          "//third_party/go:logging",
    14      ],
    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  )