...
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "size",
5 srcs = [
6 "handler.go",
7 "issue_comment.go",
8 "issues.go",
9 ],
10 importpath = "edge-infra.dev/pkg/f8n/devinfra/jack/plugin/size",
11 visibility = ["//visibility:public"],
12 deps = [
13 "//pkg/f8n/devinfra/jack/constants",
14 "//pkg/f8n/devinfra/jack/guest_services",
15 "//pkg/f8n/devinfra/jack/plugin",
16 "//pkg/lib/logging",
17 "@com_github_google_go_github_v47//github",
18 ],
19)
20
21go_test(
22 name = "size_test",
23 srcs = ["handler_test.go"],
24 embed = [":size"],
25 deps = [
26 "//pkg/f8n/devinfra/jack/constants",
27 "//pkg/f8n/devinfra/jack/plugin",
28 "//pkg/lib/logging",
29 "@com_github_google_go_github_v47//github",
30 ],
31)
View as plain text