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/grpc | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'library/cpp/grpc')
-rw-r--r-- | library/cpp/grpc/client/ut/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/grpc/client/ya.make | 16 | ||||
-rw-r--r-- | library/cpp/grpc/server/actors/ya.make | 11 | ||||
-rw-r--r-- | library/cpp/grpc/server/ut/ya.make | 16 | ||||
-rw-r--r-- | library/cpp/grpc/server/ya.make | 20 |
5 files changed, 70 insertions, 0 deletions
diff --git a/library/cpp/grpc/client/ut/ya.make b/library/cpp/grpc/client/ut/ya.make new file mode 100644 index 0000000000..45a88622f4 --- /dev/null +++ b/library/cpp/grpc/client/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/grpc/client) + +SRCS( + grpc_client_low_ut.cpp +) + +END() diff --git a/library/cpp/grpc/client/ya.make b/library/cpp/grpc/client/ya.make new file mode 100644 index 0000000000..a963a42abe --- /dev/null +++ b/library/cpp/grpc/client/ya.make @@ -0,0 +1,16 @@ +LIBRARY() + +SRCS( + grpc_client_low.cpp +) + +PEERDIR( + contrib/libs/grpc + library/cpp/deprecated/atomic +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/grpc/server/actors/ya.make b/library/cpp/grpc/server/actors/ya.make new file mode 100644 index 0000000000..a8d4b40373 --- /dev/null +++ b/library/cpp/grpc/server/actors/ya.make @@ -0,0 +1,11 @@ +LIBRARY() + +SRCS( + logger.cpp +) + +PEERDIR( + library/cpp/actors/core +) + +END() diff --git a/library/cpp/grpc/server/ut/ya.make b/library/cpp/grpc/server/ut/ya.make new file mode 100644 index 0000000000..94408dc8ce --- /dev/null +++ b/library/cpp/grpc/server/ut/ya.make @@ -0,0 +1,16 @@ +UNITTEST_FOR(library/cpp/grpc/server) + +TIMEOUT(600) +SIZE(MEDIUM) + +PEERDIR( + library/cpp/grpc/server +) + +SRCS( + grpc_response_ut.cpp + stream_adaptor_ut.cpp +) + +END() + diff --git a/library/cpp/grpc/server/ya.make b/library/cpp/grpc/server/ya.make new file mode 100644 index 0000000000..9ed8f30ef2 --- /dev/null +++ b/library/cpp/grpc/server/ya.make @@ -0,0 +1,20 @@ +LIBRARY() + +SRCS( + event_callback.cpp + grpc_request.cpp + grpc_server.cpp + grpc_counters.cpp +) + +GENERATE_ENUM_SERIALIZATION(grpc_request_base.h) + +PEERDIR( + contrib/libs/grpc + library/cpp/monlib/dynamic_counters/percentile +) + +END() + +RECURSE_FOR_TESTS(ut) + |