aboutsummaryrefslogtreecommitdiff
path: root/go/cbrotli/BUILD
blob: e045b619e30733fc1f08c2231f43c8b75f8cb94e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package(default_visibility = ["//visibility:public"])

licenses(["notice"])  # MIT

load("@io_bazel_rules_go//go:def.bzl", "go_prefix", "cgo_library", "go_test")

go_prefix("github.com/google/brotli")

cgo_library(
    name = "cbrotli",
    srcs = [
        "reader.go",
        "writer.go",
    ],
    cdeps = [
        "//:brotlidec",
        "//:brotlienc",
    ],
)

go_test(
    name = "cbrotli_test",
    size = "small",
    srcs = ["cbrotli_test.go"],
    library = ":cbrotli",
)