...
1load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
3go_binary(
4 name = "eyede",
5 embed = [":hr_lib"],
6 visibility = ["//visibility:public"],
7)
8
9go_library(
10 name = "hr_lib",
11 srcs = ["main.go"],
12 importpath = "edge-infra.dev/hack/tools/hr",
13 visibility = ["//visibility:private"],
14 deps = [
15 "//hack/tools/hr/populate",
16 "//hack/tools/hr/utils",
17 "//pkg/edge/api/clients",
18 "//pkg/edge/api/utils",
19 "//pkg/lib/cli/commands",
20 "//pkg/lib/gcp/cloudsql",
21 "@com_github_googlecloudplatform_cloudsql_proxy//proxy/dialers/postgres",
22 "@com_github_peterbourgon_ff_v3//ffcli",
23 ],
24)
View as plain text