blob: 4394136e14c198786828e5e6c9d0da6c091e6bf9 (
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
|
RESOURCES_LIBRARY()
OWNER(
g:yatest
heretic
)
IF (TEST_TOOL_HOST_LOCAL)
MESSAGE(WARNING Host test tool $TEST_TOOL_HOST_LOCAL will be used)
ENDIF()
IF (TEST_TOOL3_HOST_LOCAL)
MESSAGE(WARNING Host test tool3 $TEST_TOOL3_HOST_LOCAL will be used)
ENDIF()
IF (OPENSOURCE AND USE_OPENSOURCE_TEST_TOOL)
INCLUDE(host_os.ya.make.inc)
ELSE()
INCLUDE(host.ya.make.inc)
ENDIF()
IF (TEST_TOOL_TARGET_LOCAL)
MESSAGE(WARNING Target test tool $TEST_TOOL_TARGET_LOCAL will be used)
ENDIF()
IF (OS_IOS AND NOT BUILD_IOS_APP)
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_TARGET sbr:707351393)
INCLUDE(${ARCADIA_ROOT}/build/platform/xcode/tools/ya.make.inc)
ENDIF()
END()
|