You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
527 B

package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # MIT
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "cbrotli",
srcs = [
"reader.go",
"writer.go",
],
cdeps = [
"@org_brotli//:brotlidec",
"@org_brotli//:brotlienc",
],
cgo = True,
importpath = "github.com/google/brotli/go/cbrotli",
)
go_test(
name = "cbrotli_test",
size = "small",
srcs = ["cbrotli_test.go"],
embed = [":cbrotli"],
)