aboutsummaryrefslogtreecommitdiffstats
path: root/library/go/yandex/tvm/tvmauth/ya.make
blob: 1bcc512d0df24baf223da97de78340830f27d356 (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
GO_LIBRARY()

IF (CGO_ENABLED)
    USE_CXX()
    
    PEERDIR(
        library/cpp/tvmauth/client
        library/cpp/tvmauth/client/misc/api/dynamic_dst
    )


    SRCS(
        CGO_EXPORT
        tvm.cpp
    )

    CGO_SRCS(
        client.go
        logger.go
    )
ELSE()
    SRCS(
        stub.go
    )
ENDIF()

SRCS(
    doc.go
    types.go
)

GO_XTEST_SRCS(client_example_test.go)

END()

IF (CGO_ENABLED)
    RECURSE_FOR_TESTS(
        apitest
        gotest
        tiroletest
        tooltest
    )
ENDIF()