Skip to content

Commit

Permalink
Use new go grpc bindings generator
Browse files Browse the repository at this point in the history
  • Loading branch information
mostynb committed Sep 17, 2024
1 parent 5ae93dd commit 76a3093
Show file tree
Hide file tree
Showing 12 changed files with 4,164 additions and 2,796 deletions.
39 changes: 38 additions & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,41 @@ go_deps.module(
sum = "h1:R2ZVGCZzU95oXFJxncosHS9LsX8N4/MYUdGGWOb2cFk=",
version = "v0.4.1-0.20220112235402-e1cee1c72f2f",
)
use_repo(go_deps, "com_github_abbot_go_http_auth", "com_github_aws_aws_sdk_go", "com_github_azure_azure_sdk_for_go_sdk_azcore", "com_github_azure_azure_sdk_for_go_sdk_azidentity", "com_github_azure_azure_sdk_for_go_sdk_storage_azblob", "com_github_djherbis_atime", "com_github_go_ldap_ldap_v3", "com_github_golang_protobuf", "com_github_google_go_cmp", "com_github_google_uuid", "com_github_grpc_ecosystem_go_grpc_prometheus", "com_github_jmespath_go_jmespath", "com_github_jmespath_go_jmespath_internal_testify", "com_github_johannesboyne_gofakes3", "com_github_klauspost_compress", "com_github_minio_minio_go_v7", "com_github_mostynb_go_grpc_compression", "com_github_mostynb_zstdpool_syncpool", "com_github_prometheus_client_golang", "com_github_ryszard_goskiplist", "com_github_shabbyrobe_gocovmerge", "com_github_slok_go_http_metrics", "com_github_spf13_afero", "com_github_urfave_cli_v2", "com_github_valyala_gozstd", "in_gopkg_mgo_v2", "in_gopkg_yaml_v3", "io_etcd_go_bbolt", "org_golang_google_genproto", "org_golang_google_genproto_googleapis_api", "org_golang_google_genproto_googleapis_bytestream", "org_golang_google_genproto_googleapis_rpc", "org_golang_google_grpc", "org_golang_google_protobuf", "org_golang_x_oauth2", "org_golang_x_sync")
use_repo(
go_deps,
"com_github_abbot_go_http_auth",
"com_github_aws_aws_sdk_go",
"com_github_azure_azure_sdk_for_go_sdk_azcore",
"com_github_azure_azure_sdk_for_go_sdk_azidentity",
"com_github_azure_azure_sdk_for_go_sdk_storage_azblob",
"com_github_djherbis_atime",
"com_github_go_ldap_ldap_v3",
"com_github_google_go_cmp",
"com_github_google_uuid",
"com_github_grpc_ecosystem_go_grpc_prometheus",
"com_github_jmespath_go_jmespath",
"com_github_jmespath_go_jmespath_internal_testify",
"com_github_johannesboyne_gofakes3",
"com_github_klauspost_compress",
"com_github_minio_minio_go_v7",
"com_github_mostynb_go_grpc_compression",
"com_github_mostynb_zstdpool_syncpool",
"com_github_prometheus_client_golang",
"com_github_ryszard_goskiplist",
"com_github_shabbyrobe_gocovmerge",
"com_github_slok_go_http_metrics",
"com_github_spf13_afero",
"com_github_urfave_cli_v2",
"com_github_valyala_gozstd",
"com_google_cloud_go_longrunning",
"in_gopkg_mgo_v2",
"in_gopkg_yaml_v3",
"io_etcd_go_bbolt",
"org_golang_google_genproto_googleapis_api",
"org_golang_google_genproto_googleapis_bytestream",
"org_golang_google_genproto_googleapis_rpc",
"org_golang_google_grpc",
"org_golang_google_protobuf",
"org_golang_x_oauth2",
"org_golang_x_sync",
)
12 changes: 8 additions & 4 deletions genproto/build/bazel/remote/asset/v1/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,22 @@ load("@rules_go//go:def.bzl", "go_library")

go_library(
name = "go_default_library",
srcs = ["remote_asset.pb.go"],
srcs = [
"remote_asset.pb.go",
"remote_asset_grpc.pb.go",
],
importpath = "github.com/buchgr/bazel-remote/v2/genproto/build/bazel/remote/asset/v1",
visibility = ["//visibility:public"],
deps = [
"//genproto/build/bazel/remote/execution/v2:go_default_library",
"@com_github_golang_protobuf//proto:go_default_library",
"@com_github_golang_protobuf//ptypes/duration:go_default_library",
"@com_github_golang_protobuf//ptypes/timestamp:go_default_library",
"@org_golang_google_genproto_googleapis_api//annotations:go_default_library",
"@org_golang_google_genproto_googleapis_rpc//status:go_default_library",
"@org_golang_google_grpc//:go_default_library",
"@org_golang_google_grpc//codes:go_default_library",
"@org_golang_google_grpc//status:go_default_library",
"@org_golang_google_protobuf//reflect/protoreflect:go_default_library",
"@org_golang_google_protobuf//runtime/protoimpl:go_default_library",
"@org_golang_google_protobuf//types/known/durationpb:go_default_library",
"@org_golang_google_protobuf//types/known/timestamppb:go_default_library",
],
)
Loading

0 comments on commit 76a3093

Please sign in to comment.