mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
24 lines
724 B
Python
24 lines
724 B
Python
|
|
filegroup(
|
||
|
|
name = "package-srcs",
|
||
|
|
srcs = glob(["**"]),
|
||
|
|
tags = ["automanaged"],
|
||
|
|
visibility = ["//visibility:private"],
|
||
|
|
)
|
||
|
|
|
||
|
|
filegroup(
|
||
|
|
name = "all-srcs",
|
||
|
|
srcs = [
|
||
|
|
":package-srcs",
|
||
|
|
"//app/service/main/history/api/grpc:all-srcs",
|
||
|
|
"//app/service/main/history/cmd:all-srcs",
|
||
|
|
"//app/service/main/history/conf:all-srcs",
|
||
|
|
"//app/service/main/history/dao:all-srcs",
|
||
|
|
"//app/service/main/history/model:all-srcs",
|
||
|
|
"//app/service/main/history/server/grpc:all-srcs",
|
||
|
|
"//app/service/main/history/server/http:all-srcs",
|
||
|
|
"//app/service/main/history/service:all-srcs",
|
||
|
|
],
|
||
|
|
tags = ["automanaged"],
|
||
|
|
visibility = ["//visibility:public"],
|
||
|
|
)
|