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

     1  go_library(
     2      name = "utils",
     3      srcs = glob(
     4          ["*.go"],
     5          exclude = [
     6              "wrapper_script.go",
     7              "stub.go",
     8              "*_test.go",
     9          ],
    10      ) + [":bindata"],
    11      visibility = ["PUBLIC"],
    12      deps = [
    13          "//src/cli",
    14          "//src/core",
    15          "//src/fs",
    16          "//third_party/go:levenshtein",
    17          "//third_party/go:logging",
    18          "//third_party/go:prompter",
    19      ],
    20  )
    21  
    22  go_bindata(
    23      name = "bindata",
    24      srcs = [
    25          "//tools/misc:completion_script",
    26          "//tools/misc:wrapper_script",
    27      ],
    28      prefix = "tools/misc",
    29  )