...

Text file src/github.com/grpc-ecosystem/grpc-gateway/v2/examples/internal/proto/standalone/BUILD.bazel

Documentation: github.com/grpc-ecosystem/grpc-gateway/v2/examples/internal/proto/standalone

     1load("@io_bazel_rules_go//go:def.bzl", "go_library")
     2
     3go_library(
     4    name = "standalone",
     5    srcs = ["unannotated_echo_service.pb.gw.go"],
     6    importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/examples/internal/proto/standalone",
     7    visibility = ["//examples:__subpackages__"],
     8    deps = [
     9        "//examples/internal/proto/examplepb",
    10        "//runtime",
    11        "//utilities",
    12        "@org_golang_google_grpc//:go_default_library",
    13        "@org_golang_google_grpc//codes",
    14        "@org_golang_google_grpc//grpclog",
    15        "@org_golang_google_grpc//metadata",
    16        "@org_golang_google_grpc//status",
    17        "@org_golang_google_protobuf//proto",
    18    ],
    19)
    20
    21alias(
    22    name = "go_default_library",
    23    actual = ":standalone",
    24    visibility = ["//examples:__subpackages__"],
    25)

View as plain text