aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/string_utils
diff options
context:
space:
mode:
authoralexv-smirnov <alex@ydb.tech>2023-03-28 22:25:04 +0300
committeralexv-smirnov <alex@ydb.tech>2023-03-28 22:25:04 +0300
commitb8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch)
tree1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /library/cpp/string_utils
parent25659221f18577ea38430a8ec3349836f5626b6a (diff)
downloadydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz
Revert ymake build from ydb oss export
Diffstat (limited to 'library/cpp/string_utils')
-rw-r--r--library/cpp/string_utils/base64/bench/metrics/ya.make15
-rw-r--r--library/cpp/string_utils/base64/bench/ya.make15
-rw-r--r--library/cpp/string_utils/base64/fuzz/generic/ya.make7
-rw-r--r--library/cpp/string_utils/base64/fuzz/lib/ya.make11
-rw-r--r--library/cpp/string_utils/base64/fuzz/uneven/ya.make11
-rw-r--r--library/cpp/string_utils/base64/fuzz/ya.make5
-rw-r--r--library/cpp/string_utils/base64/ut/ya.make17
-rw-r--r--library/cpp/string_utils/base64/ya.make22
-rw-r--r--library/cpp/string_utils/csv/ya.make7
-rw-r--r--library/cpp/string_utils/indent_text/ya.make7
-rw-r--r--library/cpp/string_utils/levenshtein_diff/ut/ya.make7
-rw-r--r--library/cpp/string_utils/levenshtein_diff/ya.make15
-rw-r--r--library/cpp/string_utils/parse_size/ut/ya.make7
-rw-r--r--library/cpp/string_utils/parse_size/ya.make12
-rw-r--r--library/cpp/string_utils/quote/ut/ya.make7
-rw-r--r--library/cpp/string_utils/quote/ya.make12
-rw-r--r--library/cpp/string_utils/relaxed_escaper/ut/ya.make7
-rw-r--r--library/cpp/string_utils/relaxed_escaper/ya.make11
-rw-r--r--library/cpp/string_utils/scan/ya.make7
-rw-r--r--library/cpp/string_utils/url/ut/ya.make7
-rw-r--r--library/cpp/string_utils/url/ya.make12
-rw-r--r--library/cpp/string_utils/ztstrbuf/ya.make7
22 files changed, 0 insertions, 228 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 d941438e1a..0000000000
--- a/library/cpp/string_utils/base64/bench/metrics/ya.make
+++ /dev/null
@@ -1,15 +0,0 @@
-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 6e47492f27..0000000000
--- a/library/cpp/string_utils/base64/bench/ya.make
+++ /dev/null
@@ -1,15 +0,0 @@
-Y_BENCHMARK()
-
-SRCS(
- main.cpp
-)
-
-PEERDIR(
- library/cpp/string_utils/base64
-)
-
-END()
-
-RECURSE(
- metrics
-)
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 42200698ea..0000000000
--- a/library/cpp/string_utils/base64/fuzz/generic/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-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 9ce31c3299..0000000000
--- a/library/cpp/string_utils/base64/fuzz/lib/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-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 b43737fccf..0000000000
--- a/library/cpp/string_utils/base64/fuzz/uneven/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-FUZZ()
-
-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 87a10e7ac4..0000000000
--- a/library/cpp/string_utils/base64/fuzz/ya.make
+++ /dev/null
@@ -1,5 +0,0 @@
-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 bfab185e89..0000000000
--- a/library/cpp/string_utils/base64/ut/ya.make
+++ /dev/null
@@ -1,17 +0,0 @@
-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 695da9a14b..0000000000
--- a/library/cpp/string_utils/base64/ya.make
+++ /dev/null
@@ -1,22 +0,0 @@
-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(
- bench
- fuzz
- ut
-)
diff --git a/library/cpp/string_utils/csv/ya.make b/library/cpp/string_utils/csv/ya.make
deleted file mode 100644
index 16682d40e5..0000000000
--- a/library/cpp/string_utils/csv/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-LIBRARY()
-
-SRCS(
- csv.cpp
-)
-
-END()
diff --git a/library/cpp/string_utils/indent_text/ya.make b/library/cpp/string_utils/indent_text/ya.make
deleted file mode 100644
index 28a5e77cfe..0000000000
--- a/library/cpp/string_utils/indent_text/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-LIBRARY()
-
-SRCS(
- indent_text.cpp
-)
-
-END()
diff --git a/library/cpp/string_utils/levenshtein_diff/ut/ya.make b/library/cpp/string_utils/levenshtein_diff/ut/ya.make
deleted file mode 100644
index 30ff29f97b..0000000000
--- a/library/cpp/string_utils/levenshtein_diff/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/string_utils/levenshtein_diff)
-
-SRCS(
- levenshtein_diff_ut.cpp
-)
-
-END()
diff --git a/library/cpp/string_utils/levenshtein_diff/ya.make b/library/cpp/string_utils/levenshtein_diff/ya.make
deleted file mode 100644
index 3baf79d7ad..0000000000
--- a/library/cpp/string_utils/levenshtein_diff/ya.make
+++ /dev/null
@@ -1,15 +0,0 @@
-LIBRARY()
-
-SRCS(
- levenshtein_diff.cpp
-)
-
-PEERDIR(
- util/draft
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/string_utils/parse_size/ut/ya.make b/library/cpp/string_utils/parse_size/ut/ya.make
deleted file mode 100644
index f570c5cfba..0000000000
--- a/library/cpp/string_utils/parse_size/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/string_utils/parse_size)
-
-SRCS(
- parse_size_ut.cpp
-)
-
-END()
diff --git a/library/cpp/string_utils/parse_size/ya.make b/library/cpp/string_utils/parse_size/ya.make
deleted file mode 100644
index d960d156bb..0000000000
--- a/library/cpp/string_utils/parse_size/ya.make
+++ /dev/null
@@ -1,12 +0,0 @@
-LIBRARY()
-
-SRCS(
- parse_size.cpp
- parse_size.h
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/string_utils/quote/ut/ya.make b/library/cpp/string_utils/quote/ut/ya.make
deleted file mode 100644
index ad951b1ed1..0000000000
--- a/library/cpp/string_utils/quote/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/string_utils/quote)
-
-SRCS(
- quote_ut.cpp
-)
-
-END()
diff --git a/library/cpp/string_utils/quote/ya.make b/library/cpp/string_utils/quote/ya.make
deleted file mode 100644
index 109592c235..0000000000
--- a/library/cpp/string_utils/quote/ya.make
+++ /dev/null
@@ -1,12 +0,0 @@
-LIBRARY()
-
-SRCS(
- quote.cpp
- quote.h
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/string_utils/relaxed_escaper/ut/ya.make b/library/cpp/string_utils/relaxed_escaper/ut/ya.make
deleted file mode 100644
index d437907e5b..0000000000
--- a/library/cpp/string_utils/relaxed_escaper/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/string_utils/relaxed_escaper)
-
-SRCS(
- relaxed_escaper_ut.cpp
-)
-
-END()
diff --git a/library/cpp/string_utils/relaxed_escaper/ya.make b/library/cpp/string_utils/relaxed_escaper/ya.make
deleted file mode 100644
index 2f9e92a578..0000000000
--- a/library/cpp/string_utils/relaxed_escaper/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-LIBRARY()
-
-SRCS(
- relaxed_escaper.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/string_utils/scan/ya.make b/library/cpp/string_utils/scan/ya.make
deleted file mode 100644
index e90dbf3154..0000000000
--- a/library/cpp/string_utils/scan/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-LIBRARY()
-
-SRCS(
- scan.cpp
-)
-
-END()
diff --git a/library/cpp/string_utils/url/ut/ya.make b/library/cpp/string_utils/url/ut/ya.make
deleted file mode 100644
index c876bb2888..0000000000
--- a/library/cpp/string_utils/url/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/string_utils/url)
-
-SRCS(
- url_ut.cpp
-)
-
-END()
diff --git a/library/cpp/string_utils/url/ya.make b/library/cpp/string_utils/url/ya.make
deleted file mode 100644
index bccc1c332b..0000000000
--- a/library/cpp/string_utils/url/ya.make
+++ /dev/null
@@ -1,12 +0,0 @@
-LIBRARY()
-
-SRCS(
- url.cpp
- url.h
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/string_utils/ztstrbuf/ya.make b/library/cpp/string_utils/ztstrbuf/ya.make
deleted file mode 100644
index 019d9e890b..0000000000
--- a/library/cpp/string_utils/ztstrbuf/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-LIBRARY()
-
-SRCS(
- ztstrbuf.cpp
-)
-
-END()