blob: dffff896f081c6e8ce7326d4e5e51796ca4f07e1 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "zip",
srcs = ["zip.go"],
importpath = "go.skia.org/infra/go/util/zip",
visibility = ["//visibility:public"],
)
go_test(
name = "zip_test",
srcs = ["zip_test.go"],
embed = [":zip"],
deps = [
"//go/testutils",
"@com_github_stretchr_testify//require",
],
)