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/deprecated | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'library/cpp/deprecated')
-rw-r--r-- | library/cpp/deprecated/accessors/ut/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/deprecated/accessors/ya.make | 13 | ||||
-rw-r--r-- | library/cpp/deprecated/atomic/ut/ya.make | 5 | ||||
-rw-r--r-- | library/cpp/deprecated/atomic/ya.make | 5 | ||||
-rw-r--r-- | library/cpp/deprecated/enum_codegen/ut/ya.make | 13 | ||||
-rw-r--r-- | library/cpp/deprecated/enum_codegen/ya.make | 11 | ||||
-rw-r--r-- | library/cpp/deprecated/kmp/ut/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/deprecated/kmp/ya.make | 12 | ||||
-rw-r--r-- | library/cpp/deprecated/split/ut/ya.make | 8 | ||||
-rw-r--r-- | library/cpp/deprecated/split/ya.make | 16 | ||||
-rw-r--r-- | library/cpp/deprecated/threadable/ya.make | 7 |
11 files changed, 104 insertions, 0 deletions
diff --git a/library/cpp/deprecated/accessors/ut/ya.make b/library/cpp/deprecated/accessors/ut/ya.make new file mode 100644 index 0000000000..5e79af5efd --- /dev/null +++ b/library/cpp/deprecated/accessors/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/deprecated/accessors) + +SRCS( + accessors_ut.cpp +) + +END() diff --git a/library/cpp/deprecated/accessors/ya.make b/library/cpp/deprecated/accessors/ya.make new file mode 100644 index 0000000000..0aa8fcfa9b --- /dev/null +++ b/library/cpp/deprecated/accessors/ya.make @@ -0,0 +1,13 @@ +LIBRARY() + +SRCS( + accessors.cpp + accessors_impl.cpp + memory_traits.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/deprecated/atomic/ut/ya.make b/library/cpp/deprecated/atomic/ut/ya.make new file mode 100644 index 0000000000..e21fd08990 --- /dev/null +++ b/library/cpp/deprecated/atomic/ut/ya.make @@ -0,0 +1,5 @@ +UNITTEST_FOR(library/cpp/deprecated/atomic) + +SRCS(atomic_ut.cpp) + +END() diff --git a/library/cpp/deprecated/atomic/ya.make b/library/cpp/deprecated/atomic/ya.make new file mode 100644 index 0000000000..af1c3c5ac0 --- /dev/null +++ b/library/cpp/deprecated/atomic/ya.make @@ -0,0 +1,5 @@ +LIBRARY() + +END() + +RECURSE_FOR_TESTS(ut) diff --git a/library/cpp/deprecated/enum_codegen/ut/ya.make b/library/cpp/deprecated/enum_codegen/ut/ya.make new file mode 100644 index 0000000000..2cdca47ad0 --- /dev/null +++ b/library/cpp/deprecated/enum_codegen/ut/ya.make @@ -0,0 +1,13 @@ +UNITTEST() + +SRCDIR(library/cpp/deprecated/enum_codegen) + +PEERDIR( + library/cpp/deprecated/enum_codegen +) + +SRCS( + enum_codegen_ut.cpp +) + +END() diff --git a/library/cpp/deprecated/enum_codegen/ya.make b/library/cpp/deprecated/enum_codegen/ya.make new file mode 100644 index 0000000000..9ff9997c84 --- /dev/null +++ b/library/cpp/deprecated/enum_codegen/ya.make @@ -0,0 +1,11 @@ +LIBRARY() + +SRCS( + enum_codegen.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/deprecated/kmp/ut/ya.make b/library/cpp/deprecated/kmp/ut/ya.make new file mode 100644 index 0000000000..bb240b042e --- /dev/null +++ b/library/cpp/deprecated/kmp/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/deprecated/kmp) + +SRCS( + kmp_ut.cpp +) + +END() diff --git a/library/cpp/deprecated/kmp/ya.make b/library/cpp/deprecated/kmp/ya.make new file mode 100644 index 0000000000..9814333db0 --- /dev/null +++ b/library/cpp/deprecated/kmp/ya.make @@ -0,0 +1,12 @@ +LIBRARY() + +SRCS( + kmp.cpp + kmp.h +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/deprecated/split/ut/ya.make b/library/cpp/deprecated/split/ut/ya.make new file mode 100644 index 0000000000..8b3da078c2 --- /dev/null +++ b/library/cpp/deprecated/split/ut/ya.make @@ -0,0 +1,8 @@ +UNITTEST_FOR(library/cpp/deprecated/split) + +SRCS( + delim_string_iter_ut.cpp + split_iterator_ut.cpp +) + +END() diff --git a/library/cpp/deprecated/split/ya.make b/library/cpp/deprecated/split/ya.make new file mode 100644 index 0000000000..8b6897fa28 --- /dev/null +++ b/library/cpp/deprecated/split/ya.make @@ -0,0 +1,16 @@ +LIBRARY() + +SRCS( + delim_string_iter.cpp + split_iterator.cpp +) + +PEERDIR( + library/cpp/deprecated/kmp +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/deprecated/threadable/ya.make b/library/cpp/deprecated/threadable/ya.make new file mode 100644 index 0000000000..58ffc0046f --- /dev/null +++ b/library/cpp/deprecated/threadable/ya.make @@ -0,0 +1,7 @@ +LIBRARY() + +SRCS( + threadable.cpp +) + +END() |