...
1load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "owners",
5 srcs = [
6 "file.go",
7 "policybot.go",
8 ],
9 importpath = "edge-infra.dev/pkg/f8n/devinfra/repo/owners",
10 visibility = ["//visibility:public"],
11 deps = [
12 "//pkg/f8n/devinfra/repo/owners/policybot/policy",
13 "//pkg/f8n/devinfra/repo/owners/policybot/policy/approval",
14 "//pkg/f8n/devinfra/repo/owners/policybot/policy/common",
15 "//pkg/f8n/devinfra/repo/owners/policybot/policy/disapproval",
16 "//pkg/f8n/devinfra/repo/owners/policybot/policy/predicate",
17 "//pkg/f8n/devinfra/repo/owners/policybot/pull",
18 ],
19)
View as plain text