File: BUILD.bazel

package info (click to toggle)
golang-github-grpc-ecosystem-grpc-gateway 2.20.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,236 kB
  • sloc: javascript: 357; makefile: 147; sh: 26
file content (32 lines) | stat: -rw-r--r-- 916 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
load("@io_bazel_rules_go//go:def.bzl", "go_library")

package(default_visibility = ["//visibility:public"])

go_library(
    name = "echo",
    srcs = [
        "api_echo_service.go",
        "client.go",
        "configuration.go",
        "model_examplepb_dynamic_message.go",
        "model_examplepb_dynamic_message_update.go",
        "model_examplepb_embedded.go",
        "model_examplepb_nested_message.go",
        "model_examplepb_simple_message.go",
        "model_protobuf_any.go",
        "model_protobuf_null_value.go",
        "model_rpc_status.go",
        "response.go",
    ],
    importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/examples/internal/clients/echo",
    deps = [
        "@com_github_antihax_optional//:optional",
        "@org_golang_x_oauth2//:oauth2",
    ],
)

alias(
    name = "go_default_library",
    actual = ":echo",
    visibility = ["//examples:__subpackages__"],
)