diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /library/cpp/deprecated | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
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() |