aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/regex
diff options
context:
space:
mode:
authorarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-15 13:35:56 +0300
committerarcadia-devtools <arcadia-devtools@yandex-team.ru>2022-03-15 13:35:56 +0300
commit094638589de6a6c9f91fad0005843fc1c1adc957 (patch)
tree7d55b9e950eb724da222548997547bf6710b1b58 /library/cpp/regex
parentbc921e787bed8a51a43725b78382e806800c44c1 (diff)
downloadydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'library/cpp/regex')
-rw-r--r--library/cpp/regex/hyperscan/ut/ya.make13
-rw-r--r--library/cpp/regex/hyperscan/ya.make19
-rw-r--r--library/cpp/regex/pcre/benchmark/ya.make14
-rw-r--r--library/cpp/regex/pcre/ut/ya.make10
-rw-r--r--library/cpp/regex/pcre/ya.make23
-rw-r--r--library/cpp/regex/pire/inline/ya.make22
-rw-r--r--library/cpp/regex/pire/ut/ya.make44
-rw-r--r--library/cpp/regex/pire/ya.make40
-rw-r--r--library/cpp/regex/ya.make14
9 files changed, 0 insertions, 199 deletions
diff --git a/library/cpp/regex/hyperscan/ut/ya.make b/library/cpp/regex/hyperscan/ut/ya.make
deleted file mode 100644
index da67b88672a..00000000000
--- a/library/cpp/regex/hyperscan/ut/ya.make
+++ /dev/null
@@ -1,13 +0,0 @@
-UNITTEST()
-
-PEERDIR(
- library/cpp/regex/hyperscan
-)
-
-OWNER(g:antiinfra)
-
-SRCS(
- hyperscan_ut.cpp
-)
-
-END()
diff --git a/library/cpp/regex/hyperscan/ya.make b/library/cpp/regex/hyperscan/ya.make
deleted file mode 100644
index e99130ae186..00000000000
--- a/library/cpp/regex/hyperscan/ya.make
+++ /dev/null
@@ -1,19 +0,0 @@
-LIBRARY()
-
-OWNER(g:antiinfra)
-
-PEERDIR(
- contrib/libs/hyperscan
- contrib/libs/hyperscan/runtime_core2
- contrib/libs/hyperscan/runtime_corei7
- contrib/libs/hyperscan/runtime_avx2
- contrib/libs/hyperscan/runtime_avx512
-)
-
-SRCS(
- hyperscan.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(ut)
diff --git a/library/cpp/regex/pcre/benchmark/ya.make b/library/cpp/regex/pcre/benchmark/ya.make
deleted file mode 100644
index 7c30fae0a6d..00000000000
--- a/library/cpp/regex/pcre/benchmark/ya.make
+++ /dev/null
@@ -1,14 +0,0 @@
-G_BENCHMARK()
-
-OWNER(g:so)
-
-PEERDIR(
- library/cpp/regex/pcre
-)
-
-SRCS(
- main.cpp
-)
-
-END()
-
diff --git a/library/cpp/regex/pcre/ut/ya.make b/library/cpp/regex/pcre/ut/ya.make
deleted file mode 100644
index 0721ef87c27..00000000000
--- a/library/cpp/regex/pcre/ut/ya.make
+++ /dev/null
@@ -1,10 +0,0 @@
-UNITTEST_FOR(library/cpp/regex/pcre)
-
-OWNER(g:util)
-
-SRCS(
- pcre_ut.cpp
- regexp_ut.cpp
-)
-
-END()
diff --git a/library/cpp/regex/pcre/ya.make b/library/cpp/regex/pcre/ya.make
deleted file mode 100644
index d34911f103c..00000000000
--- a/library/cpp/regex/pcre/ya.make
+++ /dev/null
@@ -1,23 +0,0 @@
-LIBRARY()
-
-OWNER(g:util)
-
-PEERDIR(
- contrib/libs/pcre
- contrib/libs/pcre/pcre16
- contrib/libs/pcre/pcre32
- library/cpp/containers/stack_array
-)
-
-SRCS(
- pcre.cpp
- regexp.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- benchmark
- ut
-)
-
diff --git a/library/cpp/regex/pire/inline/ya.make b/library/cpp/regex/pire/inline/ya.make
deleted file mode 100644
index d4850f7b457..00000000000
--- a/library/cpp/regex/pire/inline/ya.make
+++ /dev/null
@@ -1,22 +0,0 @@
-PROGRAM(pire_inline)
-
-CFLAGS(-DPIRE_NO_CONFIG)
-
-OWNER(
- g:util
- davenger
-)
-
-PEERDIR(
- ADDINCL library/cpp/regex/pire
-)
-
-SRCDIR(
- contrib/libs/pire/pire
-)
-
-SRCS(
- inline.l
-)
-
-END()
diff --git a/library/cpp/regex/pire/ut/ya.make b/library/cpp/regex/pire/ut/ya.make
deleted file mode 100644
index 8776695f405..00000000000
--- a/library/cpp/regex/pire/ut/ya.make
+++ /dev/null
@@ -1,44 +0,0 @@
-# this test in not linked into build tree with ReCURSE and is built by unittest/library
-
-UNITTEST()
-
-OWNER(
- g:util
- davenger
-)
-
-SET(PIRETESTSDIR contrib/libs/pire/ut)
-
-CFLAGS(-DPIRE_NO_CONFIG)
-
-PEERDIR(
- library/cpp/regex/pire
-)
-
-SRCDIR(
- ${PIRETESTSDIR}
-)
-
-ADDINCL(
- contrib/libs/pire/pire
- contrib/libs/pire/ut
-)
-
-SRCS(
- pire_ut.cpp
- capture_ut.cpp
- count_ut.cpp
- glyph_ut.cpp
- easy_ut.cpp
- read_unicode_ut.cpp
- regexp_ut.cpp
- approx_matching_ut.cpp
-)
-
-SIZE(MEDIUM)
-
-TIMEOUT(600)
-
-PIRE_INLINE(inline_ut.cpp)
-
-END()
diff --git a/library/cpp/regex/pire/ya.make b/library/cpp/regex/pire/ya.make
deleted file mode 100644
index c857e6d18bc..00000000000
--- a/library/cpp/regex/pire/ya.make
+++ /dev/null
@@ -1,40 +0,0 @@
-LIBRARY()
-
-OWNER(
- g:util
- g:antiinfra
- davenger
- pg
-)
-
-CFLAGS(-DPIRE_NO_CONFIG)
-
-SRCDIR(contrib/libs/pire/pire)
-
-SRCS(
- pcre2pire.cpp
- classes.cpp
- encoding.cpp
- fsm.cpp
- scanner_io.cpp
- easy.cpp
- scanners/null.cpp
- extra/capture.cpp
- extra/count.cpp
- extra/glyphs.cpp
- re_lexer.cpp
- re_parser.y
- read_unicode.cpp
- extraencodings.cpp
- approx_matching.cpp
- half_final_fsm.cpp
- minimize.h
-)
-
-PEERDIR(
- library/cpp/charset
-)
-
-END()
-
-RECURSE_FOR_TESTS(ut)
diff --git a/library/cpp/regex/ya.make b/library/cpp/regex/ya.make
deleted file mode 100644
index 15b0d1aeda7..00000000000
--- a/library/cpp/regex/ya.make
+++ /dev/null
@@ -1,14 +0,0 @@
-RECURSE(
- glob
- hyperscan
- hyperscan/ut
- libregex
- pcre
- pire
- pire/inline
- pire/ut
- pire2hyperscan
- pire2hyperscan/ut
- regexp_classifier
- regexp_classifier/ut
-)