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

     1  go_library(
     2      name = "tool",
     3      srcs = ["tool.go"],
     4      visibility = ["PUBLIC"],
     5      deps = [
     6          "//src/core",
     7          "//third_party/go:go-flags",
     8          "//third_party/go:logging",
     9      ],
    10  )
    11  
    12  go_test(
    13      name = "tool_test",
    14      srcs = ["tool_test.go"],
    15      deps = [
    16          ":tool",
    17          "//src/core",
    18          "//third_party/go:testify",
    19      ],
    20  )