mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
11 lines
499 B
11 lines
499 B
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
|
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") |
|
|
|
def utf8_range_deps(): |
|
maybe( |
|
http_archive, |
|
name = "com_google_absl", |
|
url = "https://github.com/abseil/abseil-cpp/archive/8c0b94e793a66495e0b1f34a5eb26bd7dc672db0.zip", |
|
strip_prefix = "abseil-cpp-8c0b94e793a66495e0b1f34a5eb26bd7dc672db0", |
|
sha256 = "b9f490fae1c0d89a19073a081c3c588452461e5586e4ae31bc50a8f36339135e", |
|
)
|
|
|