aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/grpc/src/python/grpcio_channelz/ya.make
blob: 7c3506de6f573222c9cbd7a6379354576b468400 (plain) (blame)
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
53
54
55
56
PY23_LIBRARY() 
 
LICENSE(Apache-2.0)

LICENSE_TEXTS(.yandex_meta/licenses.list.txt)

OWNER( 
    akastornov 
    dvshkurko 
    g:contrib 
    g:cpp-contrib 
) 
 
PEERDIR( 
    contrib/libs/grpc/grpc 
    contrib/python/six 
) 
 
IF (PYTHON2) 
    PEERDIR( 
        contrib/python/enum34 
        contrib/python/futures 
    ) 
ENDIF() 
 
ADDINCL( 
    ${ARCADIA_BUILD_ROOT}/contrib/libs/grpc
    contrib/libs/grpc 
    contrib/libs/grpc/include 
) 
 
IF (SANITIZER_TYPE == undefined)
    # https://github.com/grpc/grpc/blob/v1.15.1/tools/bazel.rc#L43 
    CXXFLAGS(-fno-sanitize=function) 
ENDIF() 
 
NO_LINT() 
 
NO_COMPILER_WARNINGS() 
 
PY_SRCS( 
    TOP_LEVEL 
    grpc_channelz/__init__.py 
    grpc_channelz/v1/__init__.py 
    grpc_channelz/v1/_servicer.py
    grpc_channelz/v1/channelz.py 
) 
 
IF (PYTHON3)
    PY_SRCS(
        TOP_LEVEL
        grpc_channelz/v1/_async.py
    )
ENDIF()

END()