aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/linuxvdso/ya.make
blob: 4da8d3d076957c4ba25266c1e05d6070d5a1fbde (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
LIBRARY()

WITHOUT_LICENSE_TEXTS()

LICENSE(BSD-3-Clause)

VERSION(2.0)

ORIGINAL_SOURCE(https://github.com/gperftools/gperftools)

OWNER(
    g:contrib
    g:cpp-contrib
)

NO_UTIL()

NO_RUNTIME()

IF (OS_LINUX)
    PEERDIR(
        contrib/libs/linuxvdso/original
    )
    SRCS(
        interface.cpp
    )
ELSE()
    SRCS(
        fake.cpp
    )
ENDIF()

END()