Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

41
vendor/github.com/mailru/easyjson/BUILD.bazel generated vendored Normal file
View File

@@ -0,0 +1,41 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = [
"helpers.go",
"raw.go",
],
importmap = "go-common/vendor/github.com/mailru/easyjson",
importpath = "github.com/mailru/easyjson",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/mailru/easyjson/jlexer:go_default_library",
"//vendor/github.com/mailru/easyjson/jwriter:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//vendor/github.com/mailru/easyjson/benchmark:all-srcs",
"//vendor/github.com/mailru/easyjson/bootstrap:all-srcs",
"//vendor/github.com/mailru/easyjson/buffer:all-srcs",
"//vendor/github.com/mailru/easyjson/easyjson:all-srcs",
"//vendor/github.com/mailru/easyjson/gen:all-srcs",
"//vendor/github.com/mailru/easyjson/jlexer:all-srcs",
"//vendor/github.com/mailru/easyjson/jwriter:all-srcs",
"//vendor/github.com/mailru/easyjson/opt:all-srcs",
"//vendor/github.com/mailru/easyjson/parser:all-srcs",
],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)