github.com/tiagovtristao/plz@v13.4.0+incompatible/tools/jarcat/zip/BUILD (about)

     1  go_library(
     2      name = "zip",
     3      srcs = ["writer.go"],
     4      visibility = [
     5          "//tools/jarcat:all",
     6          "//tools/please_pex/pex",
     7      ],
     8      deps = [
     9          "//src/fs",
    10          "//third_party/go:logging",
    11          "//third_party/go:testify",
    12          "//third_party/go/zip",
    13      ],
    14  )
    15  
    16  go_test(
    17      name = "writer_test",
    18      srcs = ["writer_test.go"],
    19      data = [
    20          "test_data",
    21          "test_data_2",
    22          "test_data_3",
    23      ],
    24      deps = [
    25          ":zip",
    26      ],
    27  )