aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/cffi/ya.make
blob: 4d3c045bcff7f9d06615877865ef13700fe25e6a (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
57
58
59
60
PY23_LIBRARY()

LICENSE(MIT)

OWNER(g:python-contrib) 

VERSION(1.15.0)
 
PEERDIR( 
    contrib/restricted/libffi
    contrib/python/pycparser 
) 
 
ADDINCL( 
    contrib/restricted/libffi/include
) 
 
NO_COMPILER_WARNINGS()
NO_LINT() 
 
SUPPRESSIONS(lsan.supp)

SRCS(
    c/_cffi_backend.c
)

PY_REGISTER(_cffi_backend)

PY_SRCS(
    TOP_LEVEL
    cffi/__init__.py
    cffi/api.py 
    cffi/backend_ctypes.py 
    cffi/cffi_opcode.py
    cffi/commontypes.py
    cffi/cparser.py
    cffi/error.py
    cffi/ffiplatform.py
    cffi/lock.py
    cffi/model.py 
    cffi/pkgconfig.py
    cffi/recompiler.py
    cffi/setuptools_ext.py 
    cffi/vengine_cpy.py 
    cffi/vengine_gen.py 
    cffi/verifier.py 
)

RESOURCE_FILES( 
    PREFIX contrib/python/cffi/ 
    .dist-info/METADATA
    .dist-info/entry_points.txt
    .dist-info/top_level.txt
    cffi/_cffi_errors.h
    cffi/_cffi_include.h 
    cffi/_embedding.h 
    cffi/parse_c_type.h 
) 
 
END()