From 056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11 Mon Sep 17 00:00:00 2001 From: alexv-smirnov Date: Wed, 15 Mar 2023 19:59:12 +0300 Subject: add library/cpp/actors, ymake build to ydb oss export --- library/cpp/malloc/api/helpers/ya.make | 11 +++++++++++ library/cpp/malloc/api/ut/ya.make | 11 +++++++++++ library/cpp/malloc/api/ya.make | 14 ++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 library/cpp/malloc/api/helpers/ya.make create mode 100644 library/cpp/malloc/api/ut/ya.make create mode 100644 library/cpp/malloc/api/ya.make (limited to 'library/cpp/malloc/api') diff --git a/library/cpp/malloc/api/helpers/ya.make b/library/cpp/malloc/api/helpers/ya.make new file mode 100644 index 00000000000..b09146f2fee --- /dev/null +++ b/library/cpp/malloc/api/helpers/ya.make @@ -0,0 +1,11 @@ +LIBRARY() + +PEERDIR( + library/cpp/malloc/api +) + +SRCS( + io.cpp +) + +END() diff --git a/library/cpp/malloc/api/ut/ya.make b/library/cpp/malloc/api/ut/ya.make new file mode 100644 index 00000000000..5580da99d73 --- /dev/null +++ b/library/cpp/malloc/api/ut/ya.make @@ -0,0 +1,11 @@ +UNITTEST() + +PEERDIR( + library/cpp/malloc/api/helpers +) + +SRCS( + ut.cpp +) + +END() diff --git a/library/cpp/malloc/api/ya.make b/library/cpp/malloc/api/ya.make new file mode 100644 index 00000000000..499792ba197 --- /dev/null +++ b/library/cpp/malloc/api/ya.make @@ -0,0 +1,14 @@ +LIBRARY() + +NO_UTIL() + +SRCS( + malloc.cpp +) + +END() + +RECURSE( + helpers + ut +) -- cgit v1.3