diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-15 13:35:56 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-15 13:35:56 +0300 |
commit | 094638589de6a6c9f91fad0005843fc1c1adc957 (patch) | |
tree | 7d55b9e950eb724da222548997547bf6710b1b58 /library/cpp/string_utils/base64 | |
parent | bc921e787bed8a51a43725b78382e806800c44c1 (diff) | |
download | ydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz |
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'library/cpp/string_utils/base64')
-rw-r--r-- | library/cpp/string_utils/base64/bench/metrics/ya.make | 20 | ||||
-rw-r--r-- | library/cpp/string_utils/base64/bench/ya.make | 16 | ||||
-rw-r--r-- | library/cpp/string_utils/base64/fuzz/generic/ya.make | 12 | ||||
-rw-r--r-- | library/cpp/string_utils/base64/fuzz/lib/ya.make | 16 | ||||
-rw-r--r-- | library/cpp/string_utils/base64/fuzz/uneven/ya.make | 15 | ||||
-rw-r--r-- | library/cpp/string_utils/base64/fuzz/ya.make | 10 | ||||
-rw-r--r-- | library/cpp/string_utils/base64/ut/ya.make | 22 | ||||
-rw-r--r-- | library/cpp/string_utils/base64/ya.make | 23 |
8 files changed, 0 insertions, 134 deletions
diff --git a/library/cpp/string_utils/base64/bench/metrics/ya.make b/library/cpp/string_utils/base64/bench/metrics/ya.make deleted file mode 100644 index b0406516c37..00000000000 --- a/library/cpp/string_utils/base64/bench/metrics/ya.make +++ /dev/null @@ -1,20 +0,0 @@ -OWNER( - yazevnul - g:util -) - -PY2TEST() - -SIZE(LARGE) - -TAG( - ya:force_sandbox - sb:intel_e5_2660v1 - ya:fat -) - -TEST_SRCS(main.py) - -DEPENDS(library/cpp/string_utils/base64/bench) - -END() diff --git a/library/cpp/string_utils/base64/bench/ya.make b/library/cpp/string_utils/base64/bench/ya.make deleted file mode 100644 index 5ac5f3d6ced..00000000000 --- a/library/cpp/string_utils/base64/bench/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -OWNER( - yazevnul - g:util -) - -Y_BENCHMARK() - -SRCS( - main.cpp -) - -PEERDIR( - library/cpp/string_utils/base64 -) - -END() diff --git a/library/cpp/string_utils/base64/fuzz/generic/ya.make b/library/cpp/string_utils/base64/fuzz/generic/ya.make deleted file mode 100644 index d155e2b0a08..00000000000 --- a/library/cpp/string_utils/base64/fuzz/generic/ya.make +++ /dev/null @@ -1,12 +0,0 @@ -OWNER( - yazevnul - g:util -) - -FUZZ() - -PEERDIR( - library/cpp/string_utils/base64/fuzz/lib -) - -END() diff --git a/library/cpp/string_utils/base64/fuzz/lib/ya.make b/library/cpp/string_utils/base64/fuzz/lib/ya.make deleted file mode 100644 index 7b981b86a30..00000000000 --- a/library/cpp/string_utils/base64/fuzz/lib/ya.make +++ /dev/null @@ -1,16 +0,0 @@ -OWNER( - yazevnul - g:util -) - -LIBRARY() - -SRCS( - main.cpp -) - -PEERDIR( - library/cpp/string_utils/base64 -) - -END() diff --git a/library/cpp/string_utils/base64/fuzz/uneven/ya.make b/library/cpp/string_utils/base64/fuzz/uneven/ya.make deleted file mode 100644 index 18cb18ef52f..00000000000 --- a/library/cpp/string_utils/base64/fuzz/uneven/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -FUZZ() - -OWNER( - g:util -) - -SRCS( - main.cpp -) - -PEERDIR( - library/cpp/string_utils/base64 -) - -END() diff --git a/library/cpp/string_utils/base64/fuzz/ya.make b/library/cpp/string_utils/base64/fuzz/ya.make deleted file mode 100644 index bef82061c46..00000000000 --- a/library/cpp/string_utils/base64/fuzz/ya.make +++ /dev/null @@ -1,10 +0,0 @@ -OWNER( - yazevnul - g:util -) - -RECURSE( - generic - lib - uneven -) diff --git a/library/cpp/string_utils/base64/ut/ya.make b/library/cpp/string_utils/base64/ut/ya.make deleted file mode 100644 index 9b61241f0e5..00000000000 --- a/library/cpp/string_utils/base64/ut/ya.make +++ /dev/null @@ -1,22 +0,0 @@ -OWNER( - g:util - yazevnul -) - -UNITTEST_FOR(library/cpp/string_utils/base64) - -SRCS( - base64_ut.cpp - base64_decode_uneven_ut.cpp -) - -PEERDIR( - contrib/libs/base64/avx2 - contrib/libs/base64/ssse3 - contrib/libs/base64/neon32 - contrib/libs/base64/neon64 - contrib/libs/base64/plain32 - contrib/libs/base64/plain64 -) - -END() diff --git a/library/cpp/string_utils/base64/ya.make b/library/cpp/string_utils/base64/ya.make deleted file mode 100644 index f5258c446cf..00000000000 --- a/library/cpp/string_utils/base64/ya.make +++ /dev/null @@ -1,23 +0,0 @@ -OWNER( - g:util - yazevnul -) - -LIBRARY() - -SRCS( - base64.cpp -) - -PEERDIR( - contrib/libs/base64/avx2 - contrib/libs/base64/ssse3 - contrib/libs/base64/neon32 - contrib/libs/base64/neon64 - contrib/libs/base64/plain32 - contrib/libs/base64/plain64 -) - -END() - -RECURSE_FOR_TESTS(ut) |