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

SRCS(
    any.go
    deploy.go
    doc.go
    errors.go
    opts.go
    qloud.go
    tool.go
)

GO_TEST_SRCS(tool_export_test.go)

GO_XTEST_SRCS(
    any_example_test.go
    deploy_example_test.go
    qloud_example_test.go
    tool_bg_update_test.go
    tool_example_test.go
)

IF (OS_LINUX)
    GO_XTEST_SRCS(
        clients_test.go
        tool_test.go
    )
ENDIF()

IF (OS_DARWIN)
    GO_XTEST_SRCS(
        clients_test.go
        tool_test.go
    )
ENDIF()

END()

RECURSE(
    examples
    internal
)

RECURSE_FOR_TESTS(gotest)