...

Text file src/github.com/grpc-ecosystem/grpc-gateway/examples/internal/server/BUILD.bazel

Documentation: github.com/grpc-ecosystem/grpc-gateway/examples/internal/server

     1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2
     3package(default_visibility = ["//visibility:public"])
     4
     5go_library(
     6    name = "go_default_library",
     7    srcs = [
     8        "a_bit_of_everything.go",
     9        "echo.go",
    10        "fieldmask_helper.go",
    11        "flow_combination.go",
    12        "main.go",
    13        "non_standard_names.go",
    14        "responsebody.go",
    15        "unannotatedecho.go",
    16    ],
    17    importpath = "github.com/grpc-ecosystem/grpc-gateway/examples/internal/server",
    18    deps = [
    19        "//examples/internal/proto/examplepb:go_default_library",
    20        "//examples/internal/proto/pathenum:go_default_library",
    21        "//examples/internal/proto/sub:go_default_library",
    22        "//examples/internal/proto/sub2:go_default_library",
    23        "//internal/casing:go_default_library",
    24        "//runtime:go_default_library",
    25        "@com_github_golang_glog//:go_default_library",
    26        "@com_github_golang_protobuf//proto:go_default_library",
    27        "@com_github_rogpeppe_fastuuid//:go_default_library",
    28        "@go_googleapis//google/rpc:errdetails_go_proto",
    29        "@io_bazel_rules_go//proto/wkt:duration_go_proto",
    30        "@io_bazel_rules_go//proto/wkt:empty_go_proto",
    31        "@io_bazel_rules_go//proto/wkt:field_mask_go_proto",
    32        "@io_bazel_rules_go//proto/wkt:wrappers_go_proto",
    33        "@org_golang_google_grpc//:go_default_library",
    34        "@org_golang_google_grpc//codes:go_default_library",
    35        "@org_golang_google_grpc//metadata:go_default_library",
    36        "@org_golang_google_grpc//status:go_default_library",
    37    ],
    38)
    39
    40go_test(
    41    name = "go_default_test",
    42    srcs = ["fieldmask_helper_test.go"],
    43    embed = [":go_default_library"],
    44    deps = ["@io_bazel_rules_go//proto/wkt:field_mask_go_proto"],
    45)

View as plain text