aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/containers
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/containers
parent25659221f18577ea38430a8ec3349836f5626b6a (diff)
downloadydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz
Revert ymake build from ydb oss export
Diffstat (limited to 'library/cpp/containers')
-rw-r--r--library/cpp/containers/2d_array/ya.make7
-rw-r--r--library/cpp/containers/absl_flat_hash/ya.make17
-rw-r--r--library/cpp/containers/atomizer/ya.make11
-rw-r--r--library/cpp/containers/bitseq/ut/ya.make8
-rw-r--r--library/cpp/containers/bitseq/ya.make17
-rw-r--r--library/cpp/containers/compact_vector/ut/ya.make9
-rw-r--r--library/cpp/containers/compact_vector/ya.make11
-rw-r--r--library/cpp/containers/comptrie/benchmark/ya.make12
-rw-r--r--library/cpp/containers/comptrie/ut/ya.make7
-rw-r--r--library/cpp/containers/comptrie/ya.make38
-rw-r--r--library/cpp/containers/disjoint_interval_tree/ut/ya.make7
-rw-r--r--library/cpp/containers/disjoint_interval_tree/ya.make9
-rw-r--r--library/cpp/containers/flat_hash/benchmark/ya.make11
-rw-r--r--library/cpp/containers/flat_hash/fuzz/dense_map_fuzz/ya.make15
-rw-r--r--library/cpp/containers/flat_hash/fuzz/flat_map_fuzz/ya.make15
-rw-r--r--library/cpp/containers/flat_hash/fuzz/fuzz_common/ya.make9
-rw-r--r--library/cpp/containers/flat_hash/fuzz/ya.make5
-rw-r--r--library/cpp/containers/flat_hash/ut/ya.make16
-rw-r--r--library/cpp/containers/flat_hash/ya.make26
-rw-r--r--library/cpp/containers/intrusive_avl_tree/ut/ya.make7
-rw-r--r--library/cpp/containers/intrusive_avl_tree/ya.make11
-rw-r--r--library/cpp/containers/intrusive_rb_tree/fuzz/ya.make15
-rw-r--r--library/cpp/containers/intrusive_rb_tree/ut/ya.make7
-rw-r--r--library/cpp/containers/intrusive_rb_tree/ya.make12
-rw-r--r--library/cpp/containers/paged_vector/ut/ya.make11
-rw-r--r--library/cpp/containers/paged_vector/ya.make11
-rw-r--r--library/cpp/containers/ring_buffer/ya.make7
-rw-r--r--library/cpp/containers/sorted_vector/ut/ya.make8
-rw-r--r--library/cpp/containers/sorted_vector/ya.make9
-rw-r--r--library/cpp/containers/stack_array/ut/ya.make7
-rw-r--r--library/cpp/containers/stack_array/ya.make12
-rw-r--r--library/cpp/containers/stack_vector/ut/ya.make9
-rw-r--r--library/cpp/containers/stack_vector/ya.make9
-rw-r--r--library/cpp/containers/str_map/ya.make7
-rw-r--r--library/cpp/containers/top_keeper/ut/ya.make7
-rw-r--r--library/cpp/containers/top_keeper/ya.make11
36 files changed, 0 insertions, 410 deletions
diff --git a/library/cpp/containers/2d_array/ya.make b/library/cpp/containers/2d_array/ya.make
deleted file mode 100644
index 50aa2a5f8b..0000000000
--- a/library/cpp/containers/2d_array/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-LIBRARY()
-
-SRCS(
- 2d_array.cpp
-)
-
-END()
diff --git a/library/cpp/containers/absl_flat_hash/ya.make b/library/cpp/containers/absl_flat_hash/ya.make
deleted file mode 100644
index 8a7731d804..0000000000
--- a/library/cpp/containers/absl_flat_hash/ya.make
+++ /dev/null
@@ -1,17 +0,0 @@
-LIBRARY()
-
-PEERDIR(
- contrib/restricted/abseil-cpp/absl/container
-)
-
-# WARN thegeorg@: removing this ADDINCL will break svn selective checkout. Just don't.
-ADDINCL(
- contrib/restricted/abseil-cpp
-)
-
-SRCS(
- flat_hash_map.cpp
- flat_hash_set.cpp
-)
-
-END()
diff --git a/library/cpp/containers/atomizer/ya.make b/library/cpp/containers/atomizer/ya.make
deleted file mode 100644
index ee755e4186..0000000000
--- a/library/cpp/containers/atomizer/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-LIBRARY()
-
-PEERDIR(
- library/cpp/containers/str_map
-)
-
-SRCS(
- atomizer.cpp
-)
-
-END()
diff --git a/library/cpp/containers/bitseq/ut/ya.make b/library/cpp/containers/bitseq/ut/ya.make
deleted file mode 100644
index 1b835458c9..0000000000
--- a/library/cpp/containers/bitseq/ut/ya.make
+++ /dev/null
@@ -1,8 +0,0 @@
-UNITTEST_FOR(library/cpp/containers/bitseq)
-
-SRCS(
- bititerator_ut.cpp
- bitvector_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/bitseq/ya.make b/library/cpp/containers/bitseq/ya.make
deleted file mode 100644
index a59c3e765e..0000000000
--- a/library/cpp/containers/bitseq/ya.make
+++ /dev/null
@@ -1,17 +0,0 @@
-LIBRARY()
-
-PEERDIR(
- util/draft
- library/cpp/pop_count
-)
-
-SRCS(
- bitvector.cpp
- readonly_bitvector.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/containers/compact_vector/ut/ya.make b/library/cpp/containers/compact_vector/ut/ya.make
deleted file mode 100644
index 1a84894570..0000000000
--- a/library/cpp/containers/compact_vector/ut/ya.make
+++ /dev/null
@@ -1,9 +0,0 @@
-UNITTEST()
-
-SRCDIR(library/cpp/containers/compact_vector)
-
-SRCS(
- compact_vector_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/compact_vector/ya.make b/library/cpp/containers/compact_vector/ya.make
deleted file mode 100644
index b7d97b1353..0000000000
--- a/library/cpp/containers/compact_vector/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-LIBRARY()
-
-SRCS(
- compact_vector.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/containers/comptrie/benchmark/ya.make b/library/cpp/containers/comptrie/benchmark/ya.make
deleted file mode 100644
index d0d42fb7d7..0000000000
--- a/library/cpp/containers/comptrie/benchmark/ya.make
+++ /dev/null
@@ -1,12 +0,0 @@
-Y_BENCHMARK()
-
-SRCS(
- main.cpp
-)
-
-PEERDIR(
- library/cpp/containers/comptrie
- util
-)
-
-END()
diff --git a/library/cpp/containers/comptrie/ut/ya.make b/library/cpp/containers/comptrie/ut/ya.make
deleted file mode 100644
index 3a9bdefcbd..0000000000
--- a/library/cpp/containers/comptrie/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/containers/comptrie)
-
-SRCS(
- comptrie_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/comptrie/ya.make b/library/cpp/containers/comptrie/ya.make
deleted file mode 100644
index 8931bfb383..0000000000
--- a/library/cpp/containers/comptrie/ya.make
+++ /dev/null
@@ -1,38 +0,0 @@
-LIBRARY()
-
-SRCS(
- array_with_size.h
- chunked_helpers_trie.h
- comptrie.h
- comptrie_packer.h
- comptrie_trie.h
- first_symbol_iterator.h
- key_selector.h
- leaf_skipper.h
- set.h
- comptrie.cpp
- comptrie_builder.cpp
- comptrie_impl.cpp
- make_fast_layout.cpp
- minimize.cpp
- node.cpp
- opaque_trie_iterator.cpp
- prefix_iterator.cpp
- search_iterator.cpp
- write_trie_backwards.cpp
- writeable_node.cpp
-)
-
-PEERDIR(
- library/cpp/packers
- library/cpp/containers/compact_vector
- library/cpp/on_disk/chunks
- util/draft
-)
-
-END()
-
-RECURSE(
- benchmark
- ut
-)
diff --git a/library/cpp/containers/disjoint_interval_tree/ut/ya.make b/library/cpp/containers/disjoint_interval_tree/ut/ya.make
deleted file mode 100644
index b4ccc41917..0000000000
--- a/library/cpp/containers/disjoint_interval_tree/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/containers/disjoint_interval_tree)
-
-SRCS(
- disjoint_interval_tree_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/disjoint_interval_tree/ya.make b/library/cpp/containers/disjoint_interval_tree/ya.make
deleted file mode 100644
index 688a415c0f..0000000000
--- a/library/cpp/containers/disjoint_interval_tree/ya.make
+++ /dev/null
@@ -1,9 +0,0 @@
-LIBRARY()
-
-SRCS(disjoint_interval_tree.cpp)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/containers/flat_hash/benchmark/ya.make b/library/cpp/containers/flat_hash/benchmark/ya.make
deleted file mode 100644
index 6b202846a6..0000000000
--- a/library/cpp/containers/flat_hash/benchmark/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-Y_BENCHMARK()
-
-SRCS(
- flat_hash_benchmark.cpp
-)
-
-PEERDIR(
- library/cpp/containers/flat_hash
-)
-
-END()
diff --git a/library/cpp/containers/flat_hash/fuzz/dense_map_fuzz/ya.make b/library/cpp/containers/flat_hash/fuzz/dense_map_fuzz/ya.make
deleted file mode 100644
index 0e9c28ed85..0000000000
--- a/library/cpp/containers/flat_hash/fuzz/dense_map_fuzz/ya.make
+++ /dev/null
@@ -1,15 +0,0 @@
-FUZZ()
-
-SRCS(
- fuzz.cpp
-)
-
-PEERDIR(
- library/cpp/containers/flat_hash/fuzz/fuzz_common
-)
-
-SIZE(LARGE)
-
-TAG(ya:fat)
-
-END()
diff --git a/library/cpp/containers/flat_hash/fuzz/flat_map_fuzz/ya.make b/library/cpp/containers/flat_hash/fuzz/flat_map_fuzz/ya.make
deleted file mode 100644
index 0e9c28ed85..0000000000
--- a/library/cpp/containers/flat_hash/fuzz/flat_map_fuzz/ya.make
+++ /dev/null
@@ -1,15 +0,0 @@
-FUZZ()
-
-SRCS(
- fuzz.cpp
-)
-
-PEERDIR(
- library/cpp/containers/flat_hash/fuzz/fuzz_common
-)
-
-SIZE(LARGE)
-
-TAG(ya:fat)
-
-END()
diff --git a/library/cpp/containers/flat_hash/fuzz/fuzz_common/ya.make b/library/cpp/containers/flat_hash/fuzz/fuzz_common/ya.make
deleted file mode 100644
index d0a6c63883..0000000000
--- a/library/cpp/containers/flat_hash/fuzz/fuzz_common/ya.make
+++ /dev/null
@@ -1,9 +0,0 @@
-LIBRARY()
-
-SRCS(fuzz_common.cpp)
-
-PEERDIR(
- library/cpp/containers/flat_hash
-)
-
-END()
diff --git a/library/cpp/containers/flat_hash/fuzz/ya.make b/library/cpp/containers/flat_hash/fuzz/ya.make
deleted file mode 100644
index 9cb68d9e92..0000000000
--- a/library/cpp/containers/flat_hash/fuzz/ya.make
+++ /dev/null
@@ -1,5 +0,0 @@
-RECURSE(
- flat_map_fuzz
- dense_map_fuzz
- fuzz_common
-)
diff --git a/library/cpp/containers/flat_hash/ut/ya.make b/library/cpp/containers/flat_hash/ut/ya.make
deleted file mode 100644
index a4a5d22154..0000000000
--- a/library/cpp/containers/flat_hash/ut/ya.make
+++ /dev/null
@@ -1,16 +0,0 @@
-UNITTEST()
-
-SRCS(
- containers_ut.cpp
- flat_hash_ut.cpp
- iterator_ut.cpp
- probings_ut.cpp
- size_fitters_ut.cpp
- table_ut.cpp
-)
-
-PEERDIR(
- library/cpp/containers/flat_hash
-)
-
-END()
diff --git a/library/cpp/containers/flat_hash/ya.make b/library/cpp/containers/flat_hash/ya.make
deleted file mode 100644
index 0f7daea2d8..0000000000
--- a/library/cpp/containers/flat_hash/ya.make
+++ /dev/null
@@ -1,26 +0,0 @@
-LIBRARY()
-
-SRCS(
- flat_hash.cpp
- lib/concepts/container.cpp
- lib/concepts/iterator.cpp
- lib/concepts/size_fitter.cpp
- lib/concepts/value_marker.cpp
- lib/containers.cpp
- lib/expanders.cpp
- lib/iterator.cpp
- lib/map.cpp
- lib/probings.cpp
- lib/set.cpp
- lib/size_fitters.cpp
- lib/table.cpp
- lib/value_markers.cpp
-)
-
-END()
-
-RECURSE(
- benchmark
- fuzz
- ut
-)
diff --git a/library/cpp/containers/intrusive_avl_tree/ut/ya.make b/library/cpp/containers/intrusive_avl_tree/ut/ya.make
deleted file mode 100644
index f17a1aee31..0000000000
--- a/library/cpp/containers/intrusive_avl_tree/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/containers/intrusive_avl_tree)
-
-SRCS(
- avltree_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/intrusive_avl_tree/ya.make b/library/cpp/containers/intrusive_avl_tree/ya.make
deleted file mode 100644
index ef546dcd58..0000000000
--- a/library/cpp/containers/intrusive_avl_tree/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-LIBRARY()
-
-SRCS(
- avltree.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/containers/intrusive_rb_tree/fuzz/ya.make b/library/cpp/containers/intrusive_rb_tree/fuzz/ya.make
deleted file mode 100644
index 9043c78472..0000000000
--- a/library/cpp/containers/intrusive_rb_tree/fuzz/ya.make
+++ /dev/null
@@ -1,15 +0,0 @@
-FUZZ()
-
-SIZE(LARGE)
-
-TAG(ya:fat)
-
-PEERDIR(
- library/cpp/containers/intrusive_rb_tree
-)
-
-SRCS(
- rb_tree_fuzzing.cpp
-)
-
-END()
diff --git a/library/cpp/containers/intrusive_rb_tree/ut/ya.make b/library/cpp/containers/intrusive_rb_tree/ut/ya.make
deleted file mode 100644
index db8d6f0a72..0000000000
--- a/library/cpp/containers/intrusive_rb_tree/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/containers/intrusive_rb_tree)
-
-SRCS(
- rb_tree_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/intrusive_rb_tree/ya.make b/library/cpp/containers/intrusive_rb_tree/ya.make
deleted file mode 100644
index 492f83e670..0000000000
--- a/library/cpp/containers/intrusive_rb_tree/ya.make
+++ /dev/null
@@ -1,12 +0,0 @@
-LIBRARY()
-
-SRCS(
- rb_tree.cpp
-)
-
-END()
-
-RECURSE(
- fuzz
- ut
-)
diff --git a/library/cpp/containers/paged_vector/ut/ya.make b/library/cpp/containers/paged_vector/ut/ya.make
deleted file mode 100644
index d0ffac4d79..0000000000
--- a/library/cpp/containers/paged_vector/ut/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-UNITTEST()
-
-PEERDIR(
- library/cpp/containers/paged_vector
-)
-
-SRCS(
- paged_vector_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/paged_vector/ya.make b/library/cpp/containers/paged_vector/ya.make
deleted file mode 100644
index b03a0a2ded..0000000000
--- a/library/cpp/containers/paged_vector/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-LIBRARY()
-
-SRCS(
- paged_vector.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/containers/ring_buffer/ya.make b/library/cpp/containers/ring_buffer/ya.make
deleted file mode 100644
index c9220b578a..0000000000
--- a/library/cpp/containers/ring_buffer/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-LIBRARY()
-
-SRCS(
- ring_buffer.cpp
-)
-
-END()
diff --git a/library/cpp/containers/sorted_vector/ut/ya.make b/library/cpp/containers/sorted_vector/ut/ya.make
deleted file mode 100644
index 3c67b30c19..0000000000
--- a/library/cpp/containers/sorted_vector/ut/ya.make
+++ /dev/null
@@ -1,8 +0,0 @@
-UNITTEST_FOR(library/cpp/containers/sorted_vector)
-
-
-SRCS(
- sorted_vector_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/sorted_vector/ya.make b/library/cpp/containers/sorted_vector/ya.make
deleted file mode 100644
index 9f32d97359..0000000000
--- a/library/cpp/containers/sorted_vector/ya.make
+++ /dev/null
@@ -1,9 +0,0 @@
-LIBRARY()
-
-SRCS(
- sorted_vector.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(ut)
diff --git a/library/cpp/containers/stack_array/ut/ya.make b/library/cpp/containers/stack_array/ut/ya.make
deleted file mode 100644
index fdd5b8cdba..0000000000
--- a/library/cpp/containers/stack_array/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/containers/stack_array)
-
-SRCS(
- tests_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/stack_array/ya.make b/library/cpp/containers/stack_array/ya.make
deleted file mode 100644
index 8bce0023e3..0000000000
--- a/library/cpp/containers/stack_array/ya.make
+++ /dev/null
@@ -1,12 +0,0 @@
-LIBRARY()
-
-SRCS(
- range_ops.cpp
- stack_array.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/containers/stack_vector/ut/ya.make b/library/cpp/containers/stack_vector/ut/ya.make
deleted file mode 100644
index 1c07585ff7..0000000000
--- a/library/cpp/containers/stack_vector/ut/ya.make
+++ /dev/null
@@ -1,9 +0,0 @@
-UNITTEST()
-
-SRCDIR(library/cpp/containers/stack_vector)
-
-SRCS(
- stack_vec_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/stack_vector/ya.make b/library/cpp/containers/stack_vector/ya.make
deleted file mode 100644
index c36f19d82d..0000000000
--- a/library/cpp/containers/stack_vector/ya.make
+++ /dev/null
@@ -1,9 +0,0 @@
-LIBRARY()
-
-SRCS(
- stack_vec.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(ut)
diff --git a/library/cpp/containers/str_map/ya.make b/library/cpp/containers/str_map/ya.make
deleted file mode 100644
index 893e6beedd..0000000000
--- a/library/cpp/containers/str_map/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-LIBRARY()
-
-SRCS(
- str_map.cpp
-)
-
-END()
diff --git a/library/cpp/containers/top_keeper/ut/ya.make b/library/cpp/containers/top_keeper/ut/ya.make
deleted file mode 100644
index b15057918b..0000000000
--- a/library/cpp/containers/top_keeper/ut/ya.make
+++ /dev/null
@@ -1,7 +0,0 @@
-UNITTEST_FOR(library/cpp/containers/top_keeper)
-
-SRCS(
- top_keeper_ut.cpp
-)
-
-END()
diff --git a/library/cpp/containers/top_keeper/ya.make b/library/cpp/containers/top_keeper/ya.make
deleted file mode 100644
index e90d7b7e94..0000000000
--- a/library/cpp/containers/top_keeper/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-LIBRARY()
-
-SRCS(
- top_keeper.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(ut)
-
-