load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "compressor", srcs = ["gzip.go"], importpath = "edge-infra.dev/pkg/edge/datasync/internal/compressor", visibility = ["//pkg/edge/datasync:__subpackages__"], ) go_test( name = "compressor_test", srcs = ["gzip_test.go"], data = glob(["testdata/**"]), deps = [ ":compressor", "@com_github_stretchr_testify//require", ], )