summaryrefslogtreecommitdiff
path: root/vendor/github.com/authzed/cel-go/common/containers/BUILD.bazel
blob: 8e4a4c538b22fbc9d7b54d1cc0c0bb7e0dfe7378 (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
27
28
29
30
31
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")

package(
    default_visibility = ["//visibility:public"],
    licenses = ["notice"],  # Apache 2.0
)

go_library(
    name = "go_default_library",
    srcs = [
        "container.go",
    ],
    importpath = "github.com/authzed/cel-go/common/containers",
    deps = [
        "//common/ast:go_default_library",
    ],
)

go_test(
    name = "go_default_test",
    size = "small",
    srcs = [
        "container_test.go",
    ],
    embed = [
        ":go_default_library",
    ],
    deps = [
        "//common/ast:go_default_library",
    ],
)