mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
31 lines
850 B
Python
31 lines
850 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"contracts.go",
|
|
"result.go",
|
|
],
|
|
importmap = "go-common/vendor/github.com/smartystreets/goconvey/web/server/contract",
|
|
importpath = "github.com/smartystreets/goconvey/web/server/contract",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/smartystreets/goconvey/convey/reporting:go_default_library",
|
|
"//vendor/github.com/smartystreets/goconvey/web/server/messaging:go_default_library",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(["**"]),
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [":package-srcs"],
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:public"],
|
|
)
|