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

     1  go_library(
     2      name = "hashes",
     3      srcs = ["rewrite_hashes.go"],
     4      visibility = ["PUBLIC"],
     5      deps = [
     6          "//src/build",
     7          "//src/core",
     8          "//src/parse/asp",
     9          "//third_party/go:logging",
    10      ],
    11  )
    12  
    13  go_test(
    14      name = "hash_rewriter_test",
    15      srcs = ["hash_rewriter_test.go"],
    16      data = [
    17          "test_data",
    18      ],
    19      deps = [
    20          ":hashes",
    21          "//src/core",
    22          "//src/fs",
    23          "//third_party/go:testify",
    24      ],
    25  )