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/streams | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'library/cpp/streams')
-rw-r--r-- | library/cpp/streams/brotli/ut/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/streams/brotli/ya.make | 16 | ||||
-rw-r--r-- | library/cpp/streams/bzip2/ut/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/streams/bzip2/ya.make | 15 | ||||
-rw-r--r-- | library/cpp/streams/lzma/ut/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/streams/lzma/ya.make | 15 | ||||
-rw-r--r-- | library/cpp/streams/zc_memory_input/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/streams/zstd/ut/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/streams/zstd/ya.make | 15 |
9 files changed, 96 insertions, 0 deletions
diff --git a/library/cpp/streams/brotli/ut/ya.make b/library/cpp/streams/brotli/ut/ya.make new file mode 100644 index 0000000000..ffa9c0748a --- /dev/null +++ b/library/cpp/streams/brotli/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/streams/brotli) + +SRCS( + brotli_ut.cpp +) + +END() diff --git a/library/cpp/streams/brotli/ya.make b/library/cpp/streams/brotli/ya.make new file mode 100644 index 0000000000..abc1006372 --- /dev/null +++ b/library/cpp/streams/brotli/ya.make @@ -0,0 +1,16 @@ +LIBRARY() + +PEERDIR( + contrib/libs/brotli/enc + contrib/libs/brotli/dec +) + +SRCS( + brotli.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/streams/bzip2/ut/ya.make b/library/cpp/streams/bzip2/ut/ya.make new file mode 100644 index 0000000000..86e36216a4 --- /dev/null +++ b/library/cpp/streams/bzip2/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/streams/bzip2) + +SRCS( + bzip2_ut.cpp +) + +END() diff --git a/library/cpp/streams/bzip2/ya.make b/library/cpp/streams/bzip2/ya.make new file mode 100644 index 0000000000..bdbc706a86 --- /dev/null +++ b/library/cpp/streams/bzip2/ya.make @@ -0,0 +1,15 @@ +LIBRARY() + +PEERDIR( + contrib/libs/libbz2 +) + +SRCS( + bzip2.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/streams/lzma/ut/ya.make b/library/cpp/streams/lzma/ut/ya.make new file mode 100644 index 0000000000..99b7e5e401 --- /dev/null +++ b/library/cpp/streams/lzma/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/streams/lzma) + +SRCS( + lzma_ut.cpp +) + +END() diff --git a/library/cpp/streams/lzma/ya.make b/library/cpp/streams/lzma/ya.make new file mode 100644 index 0000000000..2b2e352ebd --- /dev/null +++ b/library/cpp/streams/lzma/ya.make @@ -0,0 +1,15 @@ +LIBRARY() + +PEERDIR( + contrib/libs/lzmasdk +) + +SRCS( + lzma.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/streams/zc_memory_input/ya.make b/library/cpp/streams/zc_memory_input/ya.make new file mode 100644 index 0000000000..3909706ffa --- /dev/null +++ b/library/cpp/streams/zc_memory_input/ya.make @@ -0,0 +1,7 @@ +LIBRARY() + +SRCS( + zc_memory_input.cpp +) + +END() diff --git a/library/cpp/streams/zstd/ut/ya.make b/library/cpp/streams/zstd/ut/ya.make new file mode 100644 index 0000000000..3e490b9bc1 --- /dev/null +++ b/library/cpp/streams/zstd/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/streams/zstd) + +SRCS( + zstd_ut.cpp +) + +END() diff --git a/library/cpp/streams/zstd/ya.make b/library/cpp/streams/zstd/ya.make new file mode 100644 index 0000000000..e920a0fab4 --- /dev/null +++ b/library/cpp/streams/zstd/ya.make @@ -0,0 +1,15 @@ +LIBRARY() + +PEERDIR( + contrib/libs/zstd +) + +SRCS( + zstd.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) |