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/openssl | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
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 +) |