grpc 第三方依赖 就是grpc的 third_party 文件夹
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
934 B

load(":envoy_http_archive.bzl", "xds_http_archive")
load(":repository_locations.bzl", "REPOSITORY_LOCATIONS")
def xds_api_dependencies():
xds_http_archive(
"bazel_gazelle",
locations = REPOSITORY_LOCATIONS,
)
xds_http_archive(
"com_envoyproxy_protoc_gen_validate",
locations = REPOSITORY_LOCATIONS,
)
xds_http_archive(
name = "com_github_grpc_grpc",
locations = REPOSITORY_LOCATIONS,
)
xds_http_archive(
name = "com_google_googleapis",
locations = REPOSITORY_LOCATIONS,
)
xds_http_archive(
"com_google_protobuf",
locations = REPOSITORY_LOCATIONS,
)
xds_http_archive(
"io_bazel_rules_go",
locations = REPOSITORY_LOCATIONS,
)
# Old name for backward compatibility.
# TODO(roth): Remove once all callers are updated to use the new name.
def udpa_api_dependencies():
xds_api_dependencies()