diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
commit | b8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch) | |
tree | 1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /library/cpp/digest | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) | |
download | ydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz |
Revert ymake build from ydb oss export
Diffstat (limited to 'library/cpp/digest')
29 files changed, 0 insertions, 345 deletions
diff --git a/library/cpp/digest/argonish/benchmark/ya.make b/library/cpp/digest/argonish/benchmark/ya.make deleted file mode 100644 index 8d7d2a51fd1..00000000000 --- a/library/cpp/digest/argonish/benchmark/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -Y_BENCHMARK() - -PEERDIR( - library/cpp/digest/argonish -) - -SRCS( - mbench.cpp -) - -END() diff --git a/library/cpp/digest/argonish/internal/argon2/ya.make b/library/cpp/digest/argonish/internal/argon2/ya.make deleted file mode 100644 index f5220c3f614..00000000000 --- a/library/cpp/digest/argonish/internal/argon2/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -LIBRARY() - -PEERDIR( - library/cpp/digest/argonish/internal/blamka - library/cpp/digest/argonish/internal/blake2b - library/cpp/threading/poor_man_openmp -) - -END() diff --git a/library/cpp/digest/argonish/internal/blake2b/ya.make b/library/cpp/digest/argonish/internal/blake2b/ya.make deleted file mode 100644 index a0b99aa4b26..00000000000 --- a/library/cpp/digest/argonish/internal/blake2b/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -LIBRARY() - -PEERDIR( - library/cpp/digest/argonish/internal/rotations -) - -END() diff --git a/library/cpp/digest/argonish/internal/blamka/ya.make b/library/cpp/digest/argonish/internal/blamka/ya.make deleted file mode 100644 index a0b99aa4b26..00000000000 --- a/library/cpp/digest/argonish/internal/blamka/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -LIBRARY() - -PEERDIR( - library/cpp/digest/argonish/internal/rotations -) - -END() diff --git a/library/cpp/digest/argonish/internal/proxies/avx2/ya.make b/library/cpp/digest/argonish/internal/proxies/avx2/ya.make deleted file mode 100644 index efeed5ad4da..00000000000 --- a/library/cpp/digest/argonish/internal/proxies/avx2/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -LIBRARY() - -NO_UTIL() - -IF (ARCH_X86_64 OR ARCH_I386) - PEERDIR( - library/cpp/digest/argonish/internal/proxies/macro - library/cpp/digest/argonish/internal/argon2 - library/cpp/digest/argonish/internal/blake2b - ) - SRC_C_AVX2( - proxy_avx2.cpp - ) -ENDIF() - -END() diff --git a/library/cpp/digest/argonish/internal/proxies/macro/ya.make b/library/cpp/digest/argonish/internal/proxies/macro/ya.make deleted file mode 100644 index 9865d255c8f..00000000000 --- a/library/cpp/digest/argonish/internal/proxies/macro/ya.make +++ /dev/null @@ -1,3 +0,0 @@ -LIBRARY() - -END() diff --git a/library/cpp/digest/argonish/internal/proxies/ref/ya.make b/library/cpp/digest/argonish/internal/proxies/ref/ya.make deleted file mode 100644 index e48de6d9ebf..00000000000 --- a/library/cpp/digest/argonish/internal/proxies/ref/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -LIBRARY() - -NO_UTIL() - -PEERDIR( - library/cpp/digest/argonish/internal/proxies/macro - library/cpp/digest/argonish/internal/argon2 - library/cpp/digest/argonish/internal/blake2b -) - -SRCS( - proxy_ref.cpp -) - -END() diff --git a/library/cpp/digest/argonish/internal/proxies/sse2/ya.make b/library/cpp/digest/argonish/internal/proxies/sse2/ya.make deleted file mode 100644 index 0598fb9c9ab..00000000000 --- a/library/cpp/digest/argonish/internal/proxies/sse2/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -LIBRARY() - -NO_UTIL() - -IF (ARCH_X86_64 OR ARCH_I386) - PEERDIR( - library/cpp/digest/argonish/internal/proxies/macro - library/cpp/digest/argonish/internal/argon2 - library/cpp/digest/argonish/internal/blake2b - ) - SRC_C_SSE2( - proxy_sse2.cpp - ) -ENDIF() - -END() diff --git a/library/cpp/digest/argonish/internal/proxies/sse41/ya.make b/library/cpp/digest/argonish/internal/proxies/sse41/ya.make deleted file mode 100644 index f0839adcb0a..00000000000 --- a/library/cpp/digest/argonish/internal/proxies/sse41/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -LIBRARY() - -NO_UTIL() - -IF (ARCH_X86_64 OR ARCH_I386) - PEERDIR( - library/cpp/digest/argonish/internal/proxies/macro - library/cpp/digest/argonish/internal/argon2 - library/cpp/digest/argonish/internal/blake2b - ) - SRC_C_SSE41( - proxy_sse41.cpp - ) -ENDIF() - -END() diff --git a/library/cpp/digest/argonish/internal/proxies/ssse3/ya.make b/library/cpp/digest/argonish/internal/proxies/ssse3/ya.make deleted file mode 100644 index 95e32e5ee09..00000000000 --- a/library/cpp/digest/argonish/internal/proxies/ssse3/ya.make +++ /dev/null @@ -1,17 +0,0 @@ -LIBRARY() - -NO_UTIL() - -IF (ARCH_X86_64 OR ARCH_I386) - PEERDIR( - library/cpp/digest/argonish/internal/proxies/macro - library/cpp/digest/argonish/internal/argon2 - library/cpp/digest/argonish/internal/blake2b - ) - - SRC_C_SSSE3( - proxy_ssse3.cpp - ) -ENDIF() - -END() diff --git a/library/cpp/digest/argonish/internal/rotations/ya.make b/library/cpp/digest/argonish/internal/rotations/ya.make deleted file mode 100644 index 9865d255c8f..00000000000 --- a/library/cpp/digest/argonish/internal/rotations/ya.make +++ /dev/null @@ -1,3 +0,0 @@ -LIBRARY() - -END() diff --git a/library/cpp/digest/argonish/ut/ya.make b/library/cpp/digest/argonish/ut/ya.make deleted file mode 100644 index 38d41702d21..00000000000 --- a/library/cpp/digest/argonish/ut/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -UNITTEST_FOR(library/cpp/digest/argonish) - -PEERDIR( - library/cpp/digest/argonish -) - -SRCS( - ut.cpp -) - -END() diff --git a/library/cpp/digest/argonish/ut_fat/ya.make b/library/cpp/digest/argonish/ut_fat/ya.make deleted file mode 100644 index 6f0a77611d4..00000000000 --- a/library/cpp/digest/argonish/ut_fat/ya.make +++ /dev/null @@ -1,19 +0,0 @@ -UNITTEST_FOR(library/cpp/digest/argonish) - -PEERDIR( - library/cpp/digest/argonish -) - -SRCS( - ut.cpp -) - -TAG( - sb:intel_e5_2660v4 - ya:fat - ya:force_sandbox -) - -SIZE(LARGE) - -END() diff --git a/library/cpp/digest/argonish/ya.make b/library/cpp/digest/argonish/ya.make deleted file mode 100644 index 771307059e3..00000000000 --- a/library/cpp/digest/argonish/ya.make +++ /dev/null @@ -1,29 +0,0 @@ -LIBRARY() - -IF (ARCH_X86_64 OR ARCH_I386) - PEERDIR( - library/cpp/threading/poor_man_openmp - library/cpp/digest/argonish/internal/proxies/avx2 - library/cpp/digest/argonish/internal/proxies/ref - library/cpp/digest/argonish/internal/proxies/sse2 - library/cpp/digest/argonish/internal/proxies/sse41 - library/cpp/digest/argonish/internal/proxies/ssse3 - ) -ELSE() - PEERDIR( - library/cpp/threading/poor_man_openmp - library/cpp/digest/argonish/internal/proxies/ref - ) -ENDIF() - -SRCS( - factory/factory.cpp -) - -END() - -RECURSE( - benchmark - ut - ut_fat -) diff --git a/library/cpp/digest/crc32c/ut/ya.make b/library/cpp/digest/crc32c/ut/ya.make deleted file mode 100644 index 8a4e5cb8613..00000000000 --- a/library/cpp/digest/crc32c/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -UNITTEST_FOR(library/cpp/digest/crc32c) - -SRCS( - crc32c_ut.cpp -) - -END() diff --git a/library/cpp/digest/crc32c/ya.make b/library/cpp/digest/crc32c/ya.make deleted file mode 100644 index a2f8e87da18..00000000000 --- a/library/cpp/digest/crc32c/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -LIBRARY() - -#!!! -PEERDIR( - contrib/libs/crcutil -) - -SRCS( - crc32c.cpp -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/digest/lower_case/ut/ya.make b/library/cpp/digest/lower_case/ut/ya.make deleted file mode 100644 index 159d49aa2a8..00000000000 --- a/library/cpp/digest/lower_case/ut/ya.make +++ /dev/null @@ -1,8 +0,0 @@ -UNITTEST_FOR(library/cpp/digest/lower_case) - -SRCS( - lchash_ut.cpp - hash_ops_ut.cpp -) - -END() diff --git a/library/cpp/digest/lower_case/ya.make b/library/cpp/digest/lower_case/ya.make deleted file mode 100644 index 6d6d804a5bf..00000000000 --- a/library/cpp/digest/lower_case/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -LIBRARY() - -SRCS( - lciter.cpp - lchash.cpp - hash_ops.cpp -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/digest/md5/bench/ya.make b/library/cpp/digest/md5/bench/ya.make deleted file mode 100644 index eb3c7ea5f63..00000000000 --- a/library/cpp/digest/md5/bench/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -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 deleted file mode 100644 index 5ccfc9a6eee..00000000000 --- a/library/cpp/digest/md5/medium_ut/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -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 deleted file mode 100644 index 76b61b4b196..00000000000 --- a/library/cpp/digest/md5/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -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 deleted file mode 100644 index 1e6ffd9642f..00000000000 --- a/library/cpp/digest/md5/ya.make +++ /dev/null @@ -1,18 +0,0 @@ -LIBRARY() - -SRCS( - md5.cpp -) - -PEERDIR( - contrib/libs/nayuki_md5 - library/cpp/string_utils/base64 -) - -END() - -RECURSE( - bench - medium_ut - ut -) diff --git a/library/cpp/digest/murmur/ut/ya.make b/library/cpp/digest/murmur/ut/ya.make deleted file mode 100644 index de14ca6fb6b..00000000000 --- a/library/cpp/digest/murmur/ut/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -UNITTEST() - -PEERDIR( - ADDINCL library/cpp/digest/murmur -) - -SRCDIR(library/cpp/digest/murmur) - -SRCS( - murmur_ut.cpp -) - -END() diff --git a/library/cpp/digest/murmur/ya.make b/library/cpp/digest/murmur/ya.make deleted file mode 100644 index 9c4bb887b74..00000000000 --- a/library/cpp/digest/murmur/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -LIBRARY() - -SRCS( - murmur.cpp -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/digest/old_crc/gencrc/ya.make b/library/cpp/digest/old_crc/gencrc/ya.make deleted file mode 100644 index 4d89e966698..00000000000 --- a/library/cpp/digest/old_crc/gencrc/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -PROGRAM() - -SRCS( - main.cpp -) - -END() diff --git a/library/cpp/digest/old_crc/ut/ya.make b/library/cpp/digest/old_crc/ut/ya.make deleted file mode 100644 index 8b3f7b3fd3b..00000000000 --- a/library/cpp/digest/old_crc/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -UNITTEST_FOR(library/cpp/digest/old_crc) - -SRCS( - crc_ut.cpp -) - -END() diff --git a/library/cpp/digest/old_crc/ya.make b/library/cpp/digest/old_crc/ya.make deleted file mode 100644 index 6bd8b7a1f8d..00000000000 --- a/library/cpp/digest/old_crc/ya.make +++ /dev/null @@ -1,17 +0,0 @@ -LIBRARY() - -SRCS( - crc.cpp -) - -RUN_PROGRAM( - library/cpp/digest/old_crc/gencrc - STDOUT crc.inc -) - -END() - -RECURSE( - gencrc - ut -) diff --git a/library/cpp/digest/sfh/ut/ya.make b/library/cpp/digest/sfh/ut/ya.make deleted file mode 100644 index 4308c181e14..00000000000 --- a/library/cpp/digest/sfh/ut/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -UNITTEST_FOR(library/cpp/digest/sfh) - -SRCS( - sfh_ut.cpp -) - -END() diff --git a/library/cpp/digest/sfh/ya.make b/library/cpp/digest/sfh/ya.make deleted file mode 100644 index 630a2d16bcc..00000000000 --- a/library/cpp/digest/sfh/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -LIBRARY() - -SRCS( - sfh.cpp -) - -END() - -RECURSE_FOR_TESTS( - ut -) |