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

     1  go_library(
     2      name = "fs",
     3      srcs = [
     4          "copy.go",
     5          "fs.go",
     6          "glob.go",
     7          "hash.go",
     8          "home.go",
     9          "sort.go",
    10      ],
    11      visibility = ["PUBLIC"],
    12      deps = [
    13          "//third_party/go:godirwalk",
    14          "//third_party/go:logging",
    15      ],
    16  )
    17  
    18  go_test(
    19      name = "fs_test",
    20      srcs = ["fs_test.go"],
    21      data = ["test_data"],
    22      deps = [
    23          ":fs",
    24          "//third_party/go:testify",
    25      ],
    26  )
    27  
    28  go_test(
    29      name = "hash_test",
    30      srcs = ["hash_test.go"],
    31      data = ["test_data"],
    32      deps = [
    33          ":fs",
    34          "//third_party/go:testify",
    35      ],
    36  )
    37  
    38  go_test(
    39      name = "home_test",
    40      srcs = ["home_test.go"],
    41      deps = [
    42          ":fs",
    43          "//third_party/go:testify",
    44      ],
    45  )
    46  
    47  go_test(
    48      name = "sort_test",
    49      srcs = ["sort_test.go"],
    50      deps = [
    51          ":fs",
    52          "//third_party/go:testify",
    53      ],
    54  )