You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
464 B
24 lines
464 B
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
alias(
|
|
name = "go_default_library",
|
|
actual = ":go",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_library(
|
|
name = "go",
|
|
srcs = [
|
|
"builder.go",
|
|
"doc.go",
|
|
"encode.go",
|
|
"grpc.go",
|
|
"lib.go",
|
|
"sizes.go",
|
|
"struct.go",
|
|
"table.go",
|
|
],
|
|
importpath = "github.com/google/flatbuffers/go",
|
|
visibility = ["//visibility:public"],
|
|
)
|