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/openssl | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'library/cpp/openssl')
-rw-r--r-- | library/cpp/openssl/holders/ut/ya.make | 8 | ||||
-rw-r--r-- | library/cpp/openssl/holders/ya.make | 16 | ||||
-rw-r--r-- | library/cpp/openssl/init/ya.make | 11 | ||||
-rw-r--r-- | library/cpp/openssl/io/ut/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/openssl/io/ya.make | 18 | ||||
-rw-r--r-- | library/cpp/openssl/method/ut/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/openssl/method/ya.make | 16 |
7 files changed, 83 insertions, 0 deletions
diff --git a/library/cpp/openssl/holders/ut/ya.make b/library/cpp/openssl/holders/ut/ya.make new file mode 100644 index 0000000000..cae373a4a9 --- /dev/null +++ b/library/cpp/openssl/holders/ut/ya.make @@ -0,0 +1,8 @@ +UNITTEST_FOR(library/cpp/openssl/holders) + +SRCS( + evp_ut.cpp + hmac_ut.cpp +) + +END() diff --git a/library/cpp/openssl/holders/ya.make b/library/cpp/openssl/holders/ya.make new file mode 100644 index 0000000000..07e12af1ba --- /dev/null +++ b/library/cpp/openssl/holders/ya.make @@ -0,0 +1,16 @@ +LIBRARY() + +PEERDIR( + contrib/libs/openssl +) + +SRCS( + bio.cpp + x509_vfy.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/openssl/init/ya.make b/library/cpp/openssl/init/ya.make new file mode 100644 index 0000000000..1c39d27380 --- /dev/null +++ b/library/cpp/openssl/init/ya.make @@ -0,0 +1,11 @@ +LIBRARY() + +PEERDIR( + contrib/libs/openssl +) + +SRCS( + init.cpp +) + +END() diff --git a/library/cpp/openssl/io/ut/ya.make b/library/cpp/openssl/io/ut/ya.make new file mode 100644 index 0000000000..54a88ddad3 --- /dev/null +++ b/library/cpp/openssl/io/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/openssl/io) + +SRCS( + builtin_ut.cpp +) + +END() diff --git a/library/cpp/openssl/io/ya.make b/library/cpp/openssl/io/ya.make new file mode 100644 index 0000000000..3fbb74fb9f --- /dev/null +++ b/library/cpp/openssl/io/ya.make @@ -0,0 +1,18 @@ +LIBRARY() + +PEERDIR( + certs + contrib/libs/openssl + library/cpp/openssl/init + library/cpp/openssl/method +) + +SRCS( + stream.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/openssl/method/ut/ya.make b/library/cpp/openssl/method/ut/ya.make new file mode 100644 index 0000000000..493e582a68 --- /dev/null +++ b/library/cpp/openssl/method/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/openssl/method) + +SRCS( + io_ut.cpp +) + +END() diff --git a/library/cpp/openssl/method/ya.make b/library/cpp/openssl/method/ya.make new file mode 100644 index 0000000000..21e5007a85 --- /dev/null +++ b/library/cpp/openssl/method/ya.make @@ -0,0 +1,16 @@ +LIBRARY() + +PEERDIR( + contrib/libs/openssl + library/cpp/openssl/holders +) + +SRCS( + io.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) |