blob: 8f0307003f727b876aa6b88a09cb0893980a951c [file] [log] [blame]
Serge Bazanskicaa12082023-02-16 14:54:04 +01001load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
3go_binary(
4 name = "test_agent",
5 embed = [":test_agent_lib"],
6 visibility = [
7 "//cloud/shepherd/equinix/manager:__pkg__",
8 ],
9)
10
11go_library(
12 name = "test_agent_lib",
13 srcs = ["main.go"],
14 importpath = "source.monogon.dev/cloud/shepherd/equinix/manager/test_agent",
15 visibility = ["//visibility:private"],
16 deps = [
17 "//cloud/agent/api",
18 "@org_golang_google_protobuf//proto",
19 ],
20)