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

SIZE(MEDIUM)

DEFAULT(
    USE_TVM_TOOL
    0
)

# tvmtool recipe exists only for linux & darwin

IF (OS_LINUX)
    SET(
        USE_TVM_TOOL
        1
    )
ELSEIF(OS_DARWIN)
    SET(
        USE_TVM_TOOL
        1
    )
ENDIF()

IF (USE_TVM_TOOL)
    INCLUDE(${ARCADIA_ROOT}/library/recipes/tvmtool/recipe.inc)

    USE_RECIPE(
        library/recipes/tvmtool/tvmtool
        library/go/yandex/tvm/tvmtool/gotest/tvmtool.conf.json
    )
ENDIF()

END()