mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
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.
43 lines
790 B
43 lines
790 B
8 years ago
|
bind(
|
||
|
name = "nanopb",
|
||
|
actual = "//third_party/nanopb",
|
||
|
)
|
||
|
|
||
|
bind(
|
||
|
name = "libssl",
|
||
|
actual = "@submodule_boringssl//:ssl",
|
||
|
)
|
||
|
|
||
|
bind(
|
||
|
name = "zlib",
|
||
|
actual = "@submodule_zlib//:z",
|
||
|
)
|
||
|
|
||
|
bind(
|
||
|
name = "protobuf_clib",
|
||
|
actual = "@submodule_protobuf//:protoc_lib",
|
||
|
)
|
||
|
|
||
|
bind(
|
||
|
name = "protobuf_compiler",
|
||
|
actual = "@submodule_protobuf//:protoc_lib",
|
||
|
)
|
||
|
|
||
|
new_local_repository(
|
||
|
name = "submodule_boringssl",
|
||
|
path = "third_party/boringssl",
|
||
|
build_file = "third_party/boringssl/BUILD",
|
||
|
)
|
||
|
|
||
|
new_local_repository(
|
||
|
name = "submodule_zlib",
|
||
|
path = "third_party/zlib",
|
||
|
build_file = "third_party/zlib.BUILD",
|
||
|
)
|
||
|
|
||
|
new_local_repository(
|
||
|
name = "submodule_protobuf",
|
||
|
path = "third_party/protobuf",
|
||
|
build_file = "third_party/protobuf/BUILD",
|
||
|
)
|