diff options
author | arcadia-devtools <[email protected]> | 2022-03-15 13:35:56 +0300 |
---|---|---|
committer | arcadia-devtools <[email protected]> | 2022-03-15 13:35:56 +0300 |
commit | 094638589de6a6c9f91fad0005843fc1c1adc957 (patch) | |
tree | 7d55b9e950eb724da222548997547bf6710b1b58 /library/cpp/containers/flat_hash | |
parent | bc921e787bed8a51a43725b78382e806800c44c1 (diff) |
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'library/cpp/containers/flat_hash')
10 files changed, 0 insertions, 138 deletions
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 6f9aedf50d5..00000000000 --- a/library/cpp/containers/flat_hash/benchmark/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -Y_BENCHMARK() - -OWNER(tender-bum) - -SRCS( - flat_hash_benchmark.cpp -) - -PEERDIR( - library/cpp/containers/flat_hash -) - -END() diff --git a/library/cpp/containers/flat_hash/lib/concepts/ya.make b/library/cpp/containers/flat_hash/lib/concepts/ya.make deleted file mode 100644 index f82fc1d51c1..00000000000 --- a/library/cpp/containers/flat_hash/lib/concepts/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -LIBRARY() - -OWNER(tender-bum) - -SRCS( - concepts.cpp -) - -END() diff --git a/library/cpp/containers/flat_hash/lib/fuzz/dense_map_fuzz/ya.make b/library/cpp/containers/flat_hash/lib/fuzz/dense_map_fuzz/ya.make deleted file mode 100644 index 3a5d3d6d8cd..00000000000 --- a/library/cpp/containers/flat_hash/lib/fuzz/dense_map_fuzz/ya.make +++ /dev/null @@ -1,19 +0,0 @@ -FUZZ() - -OWNER( - tender-bum -) - -SRCS( - fuzz.cpp -) - -PEERDIR( - library/cpp/containers/flat_hash/lib/fuzz/fuzz_common -) - -SIZE(LARGE) - -TAG(ya:fat) - -END() diff --git a/library/cpp/containers/flat_hash/lib/fuzz/flat_map_fuzz/ya.make b/library/cpp/containers/flat_hash/lib/fuzz/flat_map_fuzz/ya.make deleted file mode 100644 index 3a5d3d6d8cd..00000000000 --- a/library/cpp/containers/flat_hash/lib/fuzz/flat_map_fuzz/ya.make +++ /dev/null @@ -1,19 +0,0 @@ -FUZZ() - -OWNER( - tender-bum -) - -SRCS( - fuzz.cpp -) - -PEERDIR( - library/cpp/containers/flat_hash/lib/fuzz/fuzz_common -) - -SIZE(LARGE) - -TAG(ya:fat) - -END() diff --git a/library/cpp/containers/flat_hash/lib/fuzz/fuzz_common/ya.make b/library/cpp/containers/flat_hash/lib/fuzz/fuzz_common/ya.make deleted file mode 100644 index ecb590e1163..00000000000 --- a/library/cpp/containers/flat_hash/lib/fuzz/fuzz_common/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -LIBRARY() - -OWNER(tender-bum) - -SRCS(fuzz_common.cpp) - -PEERDIR( - library/cpp/containers/flat_hash/lib -) - -END() diff --git a/library/cpp/containers/flat_hash/lib/fuzz/ya.make b/library/cpp/containers/flat_hash/lib/fuzz/ya.make deleted file mode 100644 index dbf2183be5a..00000000000 --- a/library/cpp/containers/flat_hash/lib/fuzz/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -OWNER(tender-bum) - -RECURSE( - flat_map_fuzz - dense_map_fuzz - fuzz_common -) diff --git a/library/cpp/containers/flat_hash/lib/ut/ya.make b/library/cpp/containers/flat_hash/lib/ut/ya.make deleted file mode 100644 index 04d65a8c6e6..00000000000 --- a/library/cpp/containers/flat_hash/lib/ut/ya.make +++ /dev/null @@ -1,17 +0,0 @@ -UNITTEST() - -OWNER(tender-bum) - -SRCS( - size_fitters_ut.cpp - probings_ut.cpp - containers_ut.cpp - iterator_ut.cpp - table_ut.cpp -) - -PEERDIR( - library/cpp/containers/flat_hash/lib -) - -END() diff --git a/library/cpp/containers/flat_hash/lib/ya.make b/library/cpp/containers/flat_hash/lib/ya.make deleted file mode 100644 index afaa69110bf..00000000000 --- a/library/cpp/containers/flat_hash/lib/ya.make +++ /dev/null @@ -1,17 +0,0 @@ -LIBRARY() - -OWNER(tender-bum) - -SRCS( - containers.cpp - expanders.cpp - iterator.cpp - map.cpp - probings.cpp - set.cpp - size_fitters.cpp - table.cpp - value_markers.cpp -) - -END() 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 1d33d361208..00000000000 --- a/library/cpp/containers/flat_hash/ut/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -UNITTEST() - -OWNER(tender-bum) - -SRCS( - flat_hash_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 612e2c1cdea..00000000000 --- a/library/cpp/containers/flat_hash/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -LIBRARY() - -OWNER(tender-bum) - -PEERDIR( - library/cpp/containers/flat_hash/lib -) - -SRCS( - flat_hash.cpp -) - -END() |