diff options
| author | alexv-smirnov <[email protected]> | 2023-06-13 11:05:01 +0300 |
|---|---|---|
| committer | alexv-smirnov <[email protected]> | 2023-06-13 11:05:01 +0300 |
| commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
| tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /library/cpp/digest/md5 | |
| parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
add ymake export to ydb
Diffstat (limited to 'library/cpp/digest/md5')
| -rw-r--r-- | library/cpp/digest/md5/bench/ya.make | 11 | ||||
| -rw-r--r-- | library/cpp/digest/md5/medium_ut/ya.make | 13 | ||||
| -rw-r--r-- | library/cpp/digest/md5/ut/ya.make | 7 | ||||
| -rw-r--r-- | library/cpp/digest/md5/ya.make | 18 |
4 files changed, 49 insertions, 0 deletions
diff --git a/library/cpp/digest/md5/bench/ya.make b/library/cpp/digest/md5/bench/ya.make new file mode 100644 index 00000000000..eb3c7ea5f63 --- /dev/null +++ b/library/cpp/digest/md5/bench/ya.make @@ -0,0 +1,11 @@ +G_BENCHMARK() + +PEERDIR( + library/cpp/digest/md5 +) + +SRCS( + main.cpp +) + +END() diff --git a/library/cpp/digest/md5/medium_ut/ya.make b/library/cpp/digest/md5/medium_ut/ya.make new file mode 100644 index 00000000000..5ccfc9a6eee --- /dev/null +++ b/library/cpp/digest/md5/medium_ut/ya.make @@ -0,0 +1,13 @@ +UNITTEST_FOR(library/cpp/digest/md5) + +SIZE(MEDIUM) + +TIMEOUT(120) + +SRCS( + md5_medium_ut.cpp +) + +REQUIREMENTS(ram:10) + +END() diff --git a/library/cpp/digest/md5/ut/ya.make b/library/cpp/digest/md5/ut/ya.make new file mode 100644 index 00000000000..76b61b4b196 --- /dev/null +++ b/library/cpp/digest/md5/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/digest/md5) + +SRCS( + md5_ut.cpp +) + +END() diff --git a/library/cpp/digest/md5/ya.make b/library/cpp/digest/md5/ya.make new file mode 100644 index 00000000000..1e6ffd9642f --- /dev/null +++ b/library/cpp/digest/md5/ya.make @@ -0,0 +1,18 @@ +LIBRARY() + +SRCS( + md5.cpp +) + +PEERDIR( + contrib/libs/nayuki_md5 + library/cpp/string_utils/base64 +) + +END() + +RECURSE( + bench + medium_ut + ut +) |
