File: BUILD.bazel

package info (click to toggle)
golang-github-google-cel-go 0.18.2%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,888 kB
  • sloc: sh: 93; makefile: 12
file content (26 lines) | stat: -rw-r--r-- 602 bytes parent folder | download
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
load("@io_bazel_rules_go//go:def.bzl", "go_library")

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

go_library(
    name = "go_default_library",
    srcs = [
        "cel_base_listener.go",
        "cel_base_visitor.go",
        "cel_lexer.go",
        "cel_listener.go",
        "cel_parser.go",
        "cel_visitor.go",
    ],
    data = [
        "CEL.tokens",
        "CELLexer.tokens",
    ],
    importpath = "github.com/google/cel-go/parser/gen",
    deps = [
        "@com_github_antlr4_go_antlr_v4//:go_default_library",
    ],
)