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/json | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) |
Revert ymake build from ydb oss export
Diffstat (limited to 'library/cpp/json')
-rw-r--r-- | library/cpp/json/common/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/json/converter/ut/ya.make | 14 | ||||
-rw-r--r-- | library/cpp/json/converter/ya.make | 15 | ||||
-rw-r--r-- | library/cpp/json/easy_parse/ya.make | 11 | ||||
-rw-r--r-- | library/cpp/json/fast_sax/ya.make | 12 | ||||
-rw-r--r-- | library/cpp/json/fuzzy_test/ya.make | 11 | ||||
-rw-r--r-- | library/cpp/json/ut/ya.make | 15 | ||||
-rw-r--r-- | library/cpp/json/writer/ut/ya.make | 14 | ||||
-rw-r--r-- | library/cpp/json/writer/ya.make | 18 | ||||
-rw-r--r-- | library/cpp/json/ya.make | 26 | ||||
-rw-r--r-- | library/cpp/json/yson/ut/ya.make | 23 | ||||
-rw-r--r-- | library/cpp/json/yson/ya.make | 17 |
12 files changed, 0 insertions, 183 deletions
diff --git a/library/cpp/json/common/ya.make b/library/cpp/json/common/ya.make deleted file mode 100644 index ae064167e6b..00000000000 --- a/library/cpp/json/common/ya.make +++ /dev/null @@ -1,7 +0,0 @@ -LIBRARY() - -SRCS( - defs.cpp -) - -END() diff --git a/library/cpp/json/converter/ut/ya.make b/library/cpp/json/converter/ut/ya.make deleted file mode 100644 index 15c555d3d42..00000000000 --- a/library/cpp/json/converter/ut/ya.make +++ /dev/null @@ -1,14 +0,0 @@ -UNITTEST_FOR(library/cpp/json/converter) - -SIZE(SMALL) - -SRCS( - test_conversion.cpp -) - -PEERDIR( - library/cpp/json - library/cpp/json/writer -) - -END() diff --git a/library/cpp/json/converter/ya.make b/library/cpp/json/converter/ya.make deleted file mode 100644 index 0458d1cefa3..00000000000 --- a/library/cpp/json/converter/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -LIBRARY() - -SRCS( - converter.cpp -) - -PEERDIR( - library/cpp/json/writer -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/json/easy_parse/ya.make b/library/cpp/json/easy_parse/ya.make deleted file mode 100644 index 89a2d5bd849..00000000000 --- a/library/cpp/json/easy_parse/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -LIBRARY() - -SRCS( - json_easy_parser.cpp -) - -PEERDIR( - library/cpp/json -) - -END() diff --git a/library/cpp/json/fast_sax/ya.make b/library/cpp/json/fast_sax/ya.make deleted file mode 100644 index 2b6aaab19ce..00000000000 --- a/library/cpp/json/fast_sax/ya.make +++ /dev/null @@ -1,12 +0,0 @@ -LIBRARY() - -PEERDIR( - library/cpp/json/common -) - -SRCS( - parser.rl6 - unescape.cpp -) - -END() diff --git a/library/cpp/json/fuzzy_test/ya.make b/library/cpp/json/fuzzy_test/ya.make deleted file mode 100644 index 224f3ab6f23..00000000000 --- a/library/cpp/json/fuzzy_test/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -FUZZ() - -PEERDIR( - library/cpp/json -) - -SRCS( - main.cpp -) - -END() diff --git a/library/cpp/json/ut/ya.make b/library/cpp/json/ut/ya.make deleted file mode 100644 index 1f14dd8f6f0..00000000000 --- a/library/cpp/json/ut/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -UNITTEST_FOR(library/cpp/json) - -PEERDIR( - library/cpp/string_utils/relaxed_escaper -) - -SRCS( - json_reader_fast_ut.cpp - json_reader_ut.cpp - json_prettifier_ut.cpp - json_writer_ut.cpp - json_saveload_ut.cpp -) - -END() diff --git a/library/cpp/json/writer/ut/ya.make b/library/cpp/json/writer/ut/ya.make deleted file mode 100644 index 256b950a6e3..00000000000 --- a/library/cpp/json/writer/ut/ya.make +++ /dev/null @@ -1,14 +0,0 @@ -UNITTEST() - -PEERDIR( - ADDINCL library/cpp/json/writer -) - -SRCDIR(library/cpp/json/writer) - -SRCS( - json_ut.cpp - json_value_ut.cpp -) - -END() diff --git a/library/cpp/json/writer/ya.make b/library/cpp/json/writer/ya.make deleted file mode 100644 index 15340ed6dc7..00000000000 --- a/library/cpp/json/writer/ya.make +++ /dev/null @@ -1,18 +0,0 @@ -LIBRARY() - -PEERDIR( - library/cpp/json/common -) - -SRCS( - json_value.cpp - json.cpp -) - -GENERATE_ENUM_SERIALIZATION(json_value.h) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/json/ya.make b/library/cpp/json/ya.make deleted file mode 100644 index bdcf9a12c78..00000000000 --- a/library/cpp/json/ya.make +++ /dev/null @@ -1,26 +0,0 @@ -LIBRARY() - -SRCS( - json_writer.cpp - json_reader.cpp - json_prettifier.cpp - rapidjson_helpers.cpp -) - -PEERDIR( - contrib/libs/rapidjson - library/cpp/json/common - library/cpp/json/fast_sax - library/cpp/json/writer - library/cpp/string_utils/relaxed_escaper -) - -END() - -RECURSE( - converter - fuzzy_test - ut - writer - yson -) diff --git a/library/cpp/json/yson/ut/ya.make b/library/cpp/json/yson/ut/ya.make deleted file mode 100644 index 8fce6dbe2fa..00000000000 --- a/library/cpp/json/yson/ut/ya.make +++ /dev/null @@ -1,23 +0,0 @@ -UNITTEST_FOR(library/cpp/json/yson) - -ALLOCATOR(LF) - -DATA(sbr://363537653) - -PEERDIR( - library/cpp/blockcodecs - library/cpp/histogram/simple - library/cpp/testing/unittest -) - -SIZE(LARGE) - -TAG(ya:fat) - -TIMEOUT(600) - -SRCS( - json2yson_ut.cpp -) - -END() diff --git a/library/cpp/json/yson/ya.make b/library/cpp/json/yson/ya.make deleted file mode 100644 index 258a78efcc5..00000000000 --- a/library/cpp/json/yson/ya.make +++ /dev/null @@ -1,17 +0,0 @@ -LIBRARY() - -PEERDIR( - library/cpp/json - library/cpp/yson - library/cpp/yson/json -) - -SRCS( - json2yson.cpp -) - -END() - -RECURSE_FOR_TESTS( - ut -) |