aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio/grpc/_cython/BUILD.bazel
blob: 42db7b87213d6a96481e4ede3ea98dea63cb8bb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package(default_visibility = ["//visibility:public"])

load("//bazel:cython_library.bzl", "pyx_library")

pyx_library(
    name = "cygrpc",
    srcs = [
        "__init__.py",
        "_cygrpc/_hooks.pxd.pxi",
        "_cygrpc/_hooks.pyx.pxi",
        "_cygrpc/arguments.pxd.pxi",
        "_cygrpc/arguments.pyx.pxi",
        "_cygrpc/call.pxd.pxi",
        "_cygrpc/call.pyx.pxi",
        "_cygrpc/channel.pxd.pxi",
        "_cygrpc/channel.pyx.pxi",
        "_cygrpc/channelz.pyx.pxi",
        "_cygrpc/completion_queue.pxd.pxi",
        "_cygrpc/completion_queue.pyx.pxi",
        "_cygrpc/credentials.pxd.pxi",
        "_cygrpc/credentials.pyx.pxi",
        "_cygrpc/event.pxd.pxi",
        "_cygrpc/event.pyx.pxi",
        "_cygrpc/fork_posix.pxd.pxi",
        "_cygrpc/fork_posix.pyx.pxi",
        "_cygrpc/grpc.pxi",
        "_cygrpc/grpc_gevent.pxd.pxi",
        "_cygrpc/grpc_gevent.pyx.pxi",
        "_cygrpc/grpc_string.pyx.pxi",
        "_cygrpc/metadata.pxd.pxi",
        "_cygrpc/metadata.pyx.pxi",
        "_cygrpc/operation.pxd.pxi",
        "_cygrpc/operation.pyx.pxi",
        "_cygrpc/propagation_bits.pxd.pxi",
        "_cygrpc/propagation_bits.pyx.pxi",
        "_cygrpc/records.pxd.pxi",
        "_cygrpc/records.pyx.pxi",
        "_cygrpc/security.pxd.pxi",
        "_cygrpc/security.pyx.pxi",
        "_cygrpc/server.pxd.pxi",
        "_cygrpc/server.pyx.pxi",
        "_cygrpc/tag.pxd.pxi",
        "_cygrpc/tag.pyx.pxi",
        "_cygrpc/time.pxd.pxi",
        "_cygrpc/time.pyx.pxi",
        "cygrpc.pxd",
        "cygrpc.pyx",
    ],
    deps = [
       "//:grpc",
    ],
)