aboutsummaryrefslogtreecommitdiffstats
path: root/tools/enum_parser
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 /tools/enum_parser
parent25659221f18577ea38430a8ec3349836f5626b6a (diff)
downloadydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz
Revert ymake build from ydb oss export
Diffstat (limited to 'tools/enum_parser')
-rw-r--r--tools/enum_parser/enum_parser/ya.make28
-rw-r--r--tools/enum_parser/enum_serialization_runtime/ya.make10
-rw-r--r--tools/enum_parser/parse_enum/benchmark/ya.make9
-rw-r--r--tools/enum_parser/parse_enum/benchmark_build/lib/ya.make22
-rw-r--r--tools/enum_parser/parse_enum/benchmark_build/ut/ya.make11
-rw-r--r--tools/enum_parser/parse_enum/benchmark_build/ya.make4
-rw-r--r--tools/enum_parser/parse_enum/ut/ya.make28
-rw-r--r--tools/enum_parser/parse_enum/ya.make20
8 files changed, 0 insertions, 132 deletions
diff --git a/tools/enum_parser/enum_parser/ya.make b/tools/enum_parser/enum_parser/ya.make
deleted file mode 100644
index 1bd2356ff1..0000000000
--- a/tools/enum_parser/enum_parser/ya.make
+++ /dev/null
@@ -1,28 +0,0 @@
-PROGRAM(enum_parser)
-
-SRCS(
- main.cpp
-)
-
-INDUCED_DEPS(h+cpp
- ${ARCADIA_ROOT}/util/generic/typetraits.h
- ${ARCADIA_ROOT}/util/generic/singleton.h
- ${ARCADIA_ROOT}/util/generic/string.h
- ${ARCADIA_ROOT}/util/generic/vector.h
- ${ARCADIA_ROOT}/util/generic/map.h
- ${ARCADIA_ROOT}/util/string/cast.h
- ${ARCADIA_ROOT}/util/stream/output.h
- ${ARCADIA_ROOT}/tools/enum_parser/enum_serialization_runtime/enum_runtime.h
- ${ARCADIA_ROOT}/tools/enum_parser/enum_parser/stdlib_deps.h
-)
-
-INDUCED_DEPS(h
- ${ARCADIA_ROOT}/util/generic/serialized_enum.h
-)
-
-PEERDIR(
- library/cpp/getopt/small
- tools/enum_parser/parse_enum
-)
-
-END()
diff --git a/tools/enum_parser/enum_serialization_runtime/ya.make b/tools/enum_parser/enum_serialization_runtime/ya.make
deleted file mode 100644
index 357eb61466..0000000000
--- a/tools/enum_parser/enum_serialization_runtime/ya.make
+++ /dev/null
@@ -1,10 +0,0 @@
-LIBRARY()
-
-SRCS(
- dispatch_methods.cpp
- enum_runtime.cpp
- ordered_pairs.cpp
-)
-
-
-END()
diff --git a/tools/enum_parser/parse_enum/benchmark/ya.make b/tools/enum_parser/parse_enum/benchmark/ya.make
deleted file mode 100644
index 746389067d..0000000000
--- a/tools/enum_parser/parse_enum/benchmark/ya.make
+++ /dev/null
@@ -1,9 +0,0 @@
-Y_BENCHMARK()
-
-SRCS(
- main.cpp
-)
-
-GENERATE_ENUM_SERIALIZATION_WITH_HEADER(enum.h)
-
-END()
diff --git a/tools/enum_parser/parse_enum/benchmark_build/lib/ya.make b/tools/enum_parser/parse_enum/benchmark_build/lib/ya.make
deleted file mode 100644
index 3e5d7a626b..0000000000
--- a/tools/enum_parser/parse_enum/benchmark_build/lib/ya.make
+++ /dev/null
@@ -1,22 +0,0 @@
-LIBRARY()
-
-SRCS()
-
-RUN_PYTHON3(
- ${ARCADIA_ROOT}/tools/enum_parser/parse_enum/benchmark_build/lib/gen.py
- --range 1000
- --namespace NHuge
- --enum EHuge 1000
- STDOUT enum_huge.h
-)
-
-RUN_PYTHON3(
- ${ARCADIA_ROOT}/tools/enum_parser/parse_enum/benchmark_build/lib/gen.py
- --enum EEnormous 9000
- STDOUT enum_enormous.h
-)
-
-GENERATE_ENUM_SERIALIZATION_WITH_HEADER(enum_huge.h)
-GENERATE_ENUM_SERIALIZATION_WITH_HEADER(enum_enormous.h)
-
-END()
diff --git a/tools/enum_parser/parse_enum/benchmark_build/ut/ya.make b/tools/enum_parser/parse_enum/benchmark_build/ut/ya.make
deleted file mode 100644
index 802a84325f..0000000000
--- a/tools/enum_parser/parse_enum/benchmark_build/ut/ya.make
+++ /dev/null
@@ -1,11 +0,0 @@
-UNITTEST()
-
-PEERDIR(
- tools/enum_parser/parse_enum/benchmark_build/lib
-)
-
-SRCS(
- huge_enums_fallback_ut.cpp
-)
-
-END()
diff --git a/tools/enum_parser/parse_enum/benchmark_build/ya.make b/tools/enum_parser/parse_enum/benchmark_build/ya.make
deleted file mode 100644
index ec7e342027..0000000000
--- a/tools/enum_parser/parse_enum/benchmark_build/ya.make
+++ /dev/null
@@ -1,4 +0,0 @@
-RECURSE_FOR_TESTS(
- lib
- ut
-)
diff --git a/tools/enum_parser/parse_enum/ut/ya.make b/tools/enum_parser/parse_enum/ut/ya.make
deleted file mode 100644
index eee686134a..0000000000
--- a/tools/enum_parser/parse_enum/ut/ya.make
+++ /dev/null
@@ -1,28 +0,0 @@
-UNITTEST()
-
-PEERDIR(
- ADDINCL tools/enum_parser/parse_enum
- library/cpp/resource
-)
-
-SRCDIR(tools/enum_parser/parse_enum)
-
-RESOURCE(
- enums.h /enums
- badcode.h /badcode
- unbalanced.h /unbalanced
- alias_before_name.h /alias_before_name
-)
-
-# self-test
-GENERATE_ENUM_SERIALIZATION(enums.h)
-
-# test GENERATE_ENUM_SERIALIZATION_WITH_HEADER macro
-GENERATE_ENUM_SERIALIZATION_WITH_HEADER(enums_with_header.h)
-
-SRCS(
- parse_enum_ut.cpp
- enums.cpp
-)
-
-END()
diff --git a/tools/enum_parser/parse_enum/ya.make b/tools/enum_parser/parse_enum/ya.make
deleted file mode 100644
index c9c2ecb081..0000000000
--- a/tools/enum_parser/parse_enum/ya.make
+++ /dev/null
@@ -1,20 +0,0 @@
-LIBRARY()
-
-SRCS(
- parse_enum.cpp
-)
-
-PEERDIR(
- library/cpp/cppparser
-)
-
-END()
-
-RECURSE(
- benchmark
- ut
-)
-
-RECURSE_FOR_TESTS(
- benchmark_build
-)