|
|
|
@ -1,31 +1,5 @@ |
|
|
|
|
package(default_visibility = ["//visibility:public"]) |
|
|
|
|
|
|
|
|
|
py_library( |
|
|
|
|
name = "grpcio", |
|
|
|
|
srcs = ["__init__.py"], |
|
|
|
|
data = [ |
|
|
|
|
"//:grpc", |
|
|
|
|
], |
|
|
|
|
imports = ["../"], |
|
|
|
|
deps = [ |
|
|
|
|
":utilities", |
|
|
|
|
":auth", |
|
|
|
|
":plugin_wrapping", |
|
|
|
|
":channel", |
|
|
|
|
":interceptor", |
|
|
|
|
":server", |
|
|
|
|
":compression", |
|
|
|
|
":_simple_stubs", |
|
|
|
|
"//src/python/grpcio/grpc/_cython:cygrpc", |
|
|
|
|
"//src/python/grpcio/grpc/experimental", |
|
|
|
|
"//src/python/grpcio/grpc/framework", |
|
|
|
|
"@six//:six", |
|
|
|
|
] + select({ |
|
|
|
|
"//conditions:default": ["@enum34//:enum34"], |
|
|
|
|
"//:python3": [], |
|
|
|
|
}), |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
py_library( |
|
|
|
|
name = "auth", |
|
|
|
|
srcs = ["_auth.py"], |
|
|
|
@ -91,3 +65,29 @@ py_library( |
|
|
|
|
name = "_simple_stubs", |
|
|
|
|
srcs = ["_simple_stubs.py"], |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
py_library( |
|
|
|
|
name = "grpcio", |
|
|
|
|
srcs = ["__init__.py"], |
|
|
|
|
data = [ |
|
|
|
|
"//:grpc", |
|
|
|
|
], |
|
|
|
|
imports = ["../"], |
|
|
|
|
deps = [ |
|
|
|
|
":utilities", |
|
|
|
|
":auth", |
|
|
|
|
":plugin_wrapping", |
|
|
|
|
":channel", |
|
|
|
|
":interceptor", |
|
|
|
|
":server", |
|
|
|
|
":compression", |
|
|
|
|
":_simple_stubs", |
|
|
|
|
"//src/python/grpcio/grpc/_cython:cygrpc", |
|
|
|
|
"//src/python/grpcio/grpc/experimental", |
|
|
|
|
"//src/python/grpcio/grpc/framework", |
|
|
|
|
"@six//:six", |
|
|
|
|
] + select({ |
|
|
|
|
"//conditions:default": ["@enum34//:enum34"], |
|
|
|
|
"//:python3": [], |
|
|
|
|
}), |
|
|
|
|
) |
|
|
|
|