mirror of https://github.com/grpc/grpc.git
parent
86accb1768
commit
aa56034b58
10 changed files with 150 additions and 10 deletions
@ -1,4 +1,5 @@ |
||||
workspace(name = "com_github_grpc_grpc") |
||||
|
||||
load("//bazel:grpc_deps.bzl", "grpc_deps") |
||||
load("//bazel:grpc_deps.bzl", "grpc_deps", "grpc_test_only_deps") |
||||
grpc_deps() |
||||
grpc_test_only_deps() |
||||
|
@ -0,0 +1,7 @@ |
||||
py_library( |
||||
name = "constantly", |
||||
srcs = glob(["constantly/*.py"]), |
||||
visibility = [ |
||||
"//visibility:public", |
||||
], |
||||
) |
@ -0,0 +1,10 @@ |
||||
py_library( |
||||
name = "incremental", |
||||
srcs = glob(["src/incremental/*.py"]), |
||||
imports = [ |
||||
"src", |
||||
], |
||||
visibility = [ |
||||
"//visibility:public", |
||||
], |
||||
) |
@ -0,0 +1,15 @@ |
||||
py_library( |
||||
name = "twisted", |
||||
srcs = glob(["src/twisted/**/*.py"]), |
||||
imports = [ |
||||
"src", |
||||
], |
||||
visibility = [ |
||||
"//visibility:public", |
||||
], |
||||
deps = [ |
||||
"@com_github_twisted_incremental//:incremental", |
||||
"@com_github_twisted_constantly//:constantly", |
||||
"@com_github_zopefoundation_zope_interface//:zope_interface", |
||||
], |
||||
) |
@ -0,0 +1,10 @@ |
||||
py_library( |
||||
name = "yaml", |
||||
srcs = glob(["lib/yaml/*.py"]), |
||||
imports = [ |
||||
"lib", |
||||
], |
||||
visibility = [ |
||||
"//visibility:public", |
||||
], |
||||
) |
@ -0,0 +1,13 @@ |
||||
py_library( |
||||
name = "zope_interface", |
||||
srcs = glob([ |
||||
"src/zope/interface/*.py", |
||||
"src/zope/interface/common/*.py", |
||||
]), |
||||
imports = [ |
||||
"src", |
||||
], |
||||
visibility = [ |
||||
"//visibility:public", |
||||
], |
||||
) |
Loading…
Reference in new issue