diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
commit | 056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11 (patch) | |
tree | 4740980126f32e3af7937ba0ca5f83e59baa4ab0 /library/cpp/binsaver | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'library/cpp/binsaver')
-rw-r--r-- | library/cpp/binsaver/ut/ya.make | 9 | ||||
-rw-r--r-- | library/cpp/binsaver/ut_util/ya.make | 12 | ||||
-rw-r--r-- | library/cpp/binsaver/ya.make | 21 |
3 files changed, 42 insertions, 0 deletions
diff --git a/library/cpp/binsaver/ut/ya.make b/library/cpp/binsaver/ut/ya.make new file mode 100644 index 0000000000..de198b31a4 --- /dev/null +++ b/library/cpp/binsaver/ut/ya.make @@ -0,0 +1,9 @@ +UNITTEST_FOR(library/cpp/binsaver) + +SRCS( + binsaver_ut.cpp +) + +PEERDIR(library/cpp/binsaver/ut_util) + +END() diff --git a/library/cpp/binsaver/ut_util/ya.make b/library/cpp/binsaver/ut_util/ya.make new file mode 100644 index 0000000000..39b6c955b2 --- /dev/null +++ b/library/cpp/binsaver/ut_util/ya.make @@ -0,0 +1,12 @@ +LIBRARY() + +SRCS( + ut_util.cpp +) + +PEERDIR( + library/cpp/binsaver + library/cpp/testing/unittest +) + +END() diff --git a/library/cpp/binsaver/ya.make b/library/cpp/binsaver/ya.make new file mode 100644 index 0000000000..ae26fa93c1 --- /dev/null +++ b/library/cpp/binsaver/ya.make @@ -0,0 +1,21 @@ +LIBRARY() + +SRCS( + class_factory.h + bin_saver.cpp + blob_io.cpp + buffered_io.cpp + mem_io.cpp + util_stream_io.cpp +) + +PEERDIR( + library/cpp/containers/2d_array +) + +END() + +RECURSE_FOR_TESTS( + ut + ut_util +) |