...

Text file src/edge-infra.dev/hack/tools/cicterminals/BUILD.bazel

Documentation: edge-infra.dev/hack/tools/cicterminals

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

View as plain text