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.
23 lines
480 B
23 lines
480 B
3 years ago
|
# TODO: Move to test/distrib/python.
|
||
|
|
||
5 years ago
|
local_repository(
|
||
|
name = "com_github_grpc_grpc",
|
||
3 years ago
|
path = "../../../..",
|
||
5 years ago
|
)
|
||
|
|
||
5 years ago
|
# Ensure rules don't rely on __main__ naming convention.
|
||
|
workspace(name = "python_test_repo")
|
||
|
|
||
5 years ago
|
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
||
5 years ago
|
|
||
5 years ago
|
grpc_deps()
|
||
5 years ago
|
|
||
5 years ago
|
load("@com_github_grpc_grpc//bazel:grpc_extra_deps.bzl", "grpc_extra_deps")
|
||
5 years ago
|
|
||
5 years ago
|
grpc_extra_deps()
|
||
3 years ago
|
|
||
|
local_repository(
|
||
|
name = "some_other_repo",
|
||
|
path = "../python_second_test_repo",
|
||
|
)
|