mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
15 lines
400 B
Python
15 lines
400 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "jlexer",
|
||
|
srcs = [
|
||
|
"bytestostr.go",
|
||
|
"error.go",
|
||
|
"lexer.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/mailru/easyjson/jlexer",
|
||
|
importpath = "github.com/mailru/easyjson/jlexer",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["//vendor/github.com/josharian/intern"],
|
||
|
)
|