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/messagebus/actor | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'library/cpp/messagebus/actor')
-rw-r--r-- | library/cpp/messagebus/actor/ut/ya.make | 14 | ||||
-rw-r--r-- | library/cpp/messagebus/actor/ya.make | 17 |
2 files changed, 31 insertions, 0 deletions
diff --git a/library/cpp/messagebus/actor/ut/ya.make b/library/cpp/messagebus/actor/ut/ya.make new file mode 100644 index 0000000000..c2078d41b5 --- /dev/null +++ b/library/cpp/messagebus/actor/ut/ya.make @@ -0,0 +1,14 @@ +UNITTEST() + +PEERDIR( + library/cpp/messagebus/actor +) + +SRCS( + ../actor_ut.cpp + ../ring_buffer_ut.cpp + ../tasks_ut.cpp + ../what_thread_does_guard_ut.cpp +) + +END() diff --git a/library/cpp/messagebus/actor/ya.make b/library/cpp/messagebus/actor/ya.make new file mode 100644 index 0000000000..bd871502b6 --- /dev/null +++ b/library/cpp/messagebus/actor/ya.make @@ -0,0 +1,17 @@ +LIBRARY(messagebus_actor) + +SRCS( + executor.cpp + thread_extra.cpp + what_thread_does.cpp +) + +PEERDIR( + library/cpp/deprecated/atomic +) + +END() + +RECURSE_FOR_TESTS( + ut +) |