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