forked from ydb-platform/nbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathya.make
41 lines (33 loc) · 772 Bytes
/
ya.make
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
LIBRARY()
SRCS(
balancing.cpp
ban.cpp
config.cpp
discovery.cpp
fetch.cpp
healthcheck.cpp
instance.cpp
ping.cpp
test_conductor.cpp
test_server.cpp
)
PEERDIR(
cloud/blockstore/config
cloud/blockstore/public/api/grpc
cloud/blockstore/public/api/protos
cloud/blockstore/libs/common
cloud/blockstore/libs/diagnostics
cloud/storage/core/libs/grpc
contrib/ydb/library/actors/prof
library/cpp/deprecated/atomic
library/cpp/monlib/dynamic_counters
library/cpp/monlib/service/pages # for config html dump
library/cpp/neh
library/cpp/threading/future
contrib/libs/grpc
)
IF (PROFILE_MEMORY_ALLOCATIONS)
CFLAGS(-DPROFILE_MEMORY_ALLOCATIONS)
ENDIF()
END()
RECURSE_FOR_TESTS(ut)