blob: b6dcc073439c324452cb0963e6db253ef1a48299 (
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
|
LIBRARY()
INCLUDE(${ARCADIA_ROOT}/library/cpp/yt/ya_cpp.make.inc)
PEERDIR(
library/cpp/yt/assert
library/cpp/yt/global
library/cpp/yt/memory
library/cpp/yt/misc
library/cpp/yt/threading
library/cpp/yt/string
library/cpp/yt/logging # TODO(arkady-e1ppa): Consider logging error_code crashes to stderr and drop this dep.
util
)
SRCS(
error.cpp
error_attributes.cpp
error_code.cpp
origin_attributes.cpp
text_yson.cpp
)
END()
RECURSE_FOR_TESTS(
unittests
)
|