peridot/vendor/github.com/gobwas/glob/compiler/BUILD.bazel

15 lines
465 B
Python
Raw Normal View History

2022-07-07 20:11:50 +00:00
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "compiler",
srcs = ["compiler.go"],
importmap = "peridot.resf.org/vendor/github.com/gobwas/glob/compiler",
importpath = "github.com/gobwas/glob/compiler",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/gobwas/glob/match",
"//vendor/github.com/gobwas/glob/syntax/ast",
"//vendor/github.com/gobwas/glob/util/runes",
],
)