diff options
author | alexv-smirnov <[email protected]> | 2023-03-28 22:25:04 +0300 |
---|---|---|
committer | alexv-smirnov <[email protected]> | 2023-03-28 22:25:04 +0300 |
commit | b8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch) | |
tree | 1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /library/cpp/containers/flat_hash | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) |
Revert ymake build from ydb oss export
Diffstat (limited to 'library/cpp/containers/flat_hash')
7 files changed, 0 insertions, 97 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 6b202846a65..00000000000 --- 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 0e9c28ed854..00000000000 --- 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 0e9c28ed854..00000000000 --- 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 d0a6c63883c..00000000000 --- 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 9cb68d9e92a..00000000000 --- 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 a4a5d22154d..00000000000 --- 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 0f7daea2d8a..00000000000 --- 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 -) |