aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/deprecated/python/subprocess32/ya.make
blob: 9613acd8c01a094f5e960eec84e2d33ac7a347ac (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
PY2_LIBRARY() # Backport from Python 3.

LICENSE(PSF-2.0)

VERSION(3.5.4)

COPY_FILE(subprocess32.py subprocess.py)

PY_SRCS(
    TOP_LEVEL
    subprocess32.py
)

IF (NOT OS_WINDOWS)
    NO_COMPILER_WARNINGS()

    SRCS(
        _posixsubprocess.c
    )

    PY_REGISTER(_posixsubprocess32)

    PY_SRCS(
        TOP_LEVEL
        subprocess.py
    )
ENDIF ()

NO_LINT()

END()

RECURSE_FOR_TESTS(
    testdata
)