diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-28 22:25:04 +0300 |
commit | b8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch) | |
tree | 1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /library/cpp/http | |
parent | 25659221f18577ea38430a8ec3349836f5626b6a (diff) | |
download | ydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz |
Revert ymake build from ydb oss export
Diffstat (limited to 'library/cpp/http')
-rw-r--r-- | library/cpp/http/fetch/ut/ya.make | 8 | ||||
-rw-r--r-- | library/cpp/http/fetch/ya.make | 34 | ||||
-rw-r--r-- | library/cpp/http/io/fuzz/ya.make | 13 | ||||
-rw-r--r-- | library/cpp/http/io/list_codings/ya.make | 11 | ||||
-rw-r--r-- | library/cpp/http/io/ut/ya.make | 15 | ||||
-rw-r--r-- | library/cpp/http/io/ya.make | 23 | ||||
-rw-r--r-- | library/cpp/http/misc/ut/ya.make | 9 | ||||
-rw-r--r-- | library/cpp/http/misc/ya.make | 20 | ||||
-rw-r--r-- | library/cpp/http/push_parser/ya.make | 14 | ||||
-rw-r--r-- | library/cpp/http/server/ut/ya.make | 10 | ||||
-rw-r--r-- | library/cpp/http/server/ya.make | 22 | ||||
-rw-r--r-- | library/cpp/http/simple/ut/https_server/ya.make | 5 | ||||
-rw-r--r-- | library/cpp/http/simple/ut/ya.make | 21 | ||||
-rw-r--r-- | library/cpp/http/simple/ya.make | 20 |
14 files changed, 0 insertions, 225 deletions
diff --git a/library/cpp/http/fetch/ut/ya.make b/library/cpp/http/fetch/ut/ya.make deleted file mode 100644 index df14c2a09f..0000000000 --- a/library/cpp/http/fetch/ut/ya.make +++ /dev/null @@ -1,8 +0,0 @@ -UNITTEST_FOR(library/cpp/http/fetch) - -SRCS( - httpfsm_ut.cpp - httpparser_ut.cpp -) - -END() diff --git a/library/cpp/http/fetch/ya.make b/library/cpp/http/fetch/ya.make deleted file mode 100644 index 78125f42cf..0000000000 --- a/library/cpp/http/fetch/ya.make +++ /dev/null @@ -1,34 +0,0 @@ -LIBRARY() - -PEERDIR( - contrib/libs/zlib - library/cpp/charset - library/cpp/digest/md5 - library/cpp/http/misc - library/cpp/logger - library/cpp/mime/types - library/cpp/uri -) - -SRCS( - http_digest.cpp - http_socket.cpp - httpheader.cpp - httpload.cpp - exthttpcodes.cpp - httpfsm.rl6 - httpagent.h - httpfetcher.h - httpheader.h - httpparser.h - httpzreader.h - sockhandler.h -) - -GENERATE_ENUM_SERIALIZATION(httpheader.h) - -SET(RAGEL6_FLAGS -CG1) - -END() - -RECURSE_FOR_TESTS(ut) diff --git a/library/cpp/http/io/fuzz/ya.make b/library/cpp/http/io/fuzz/ya.make deleted file mode 100644 index 8cb1fe288d..0000000000 --- a/library/cpp/http/io/fuzz/ya.make +++ /dev/null @@ -1,13 +0,0 @@ -FUZZ() - -PEERDIR( - library/cpp/http/io -) - -SIZE(MEDIUM) - -SRCS( - main.cpp -) - -END() diff --git a/library/cpp/http/io/list_codings/ya.make b/library/cpp/http/io/list_codings/ya.make deleted file mode 100644 index afc5c45444..0000000000 --- a/library/cpp/http/io/list_codings/ya.make +++ /dev/null @@ -1,11 +0,0 @@ -PROGRAM() - -PEERDIR( - library/cpp/http/io -) - -SRCS( - main.cpp -) - -END() diff --git a/library/cpp/http/io/ut/ya.make b/library/cpp/http/io/ut/ya.make deleted file mode 100644 index 75beaaafb9..0000000000 --- a/library/cpp/http/io/ut/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -UNITTEST_FOR(library/cpp/http/io) - -PEERDIR( - library/cpp/http/server -) - -SRCS( - chunk_ut.cpp - compression_ut.cpp - headers_ut.cpp - stream_ut.cpp - stream_ut_medium.cpp -) - -END() diff --git a/library/cpp/http/io/ya.make b/library/cpp/http/io/ya.make deleted file mode 100644 index 0390aecf55..0000000000 --- a/library/cpp/http/io/ya.make +++ /dev/null @@ -1,23 +0,0 @@ -LIBRARY() - -PEERDIR( - library/cpp/blockcodecs - library/cpp/streams/brotli - library/cpp/streams/bzip2 - library/cpp/streams/lzma -) - -SRCS( - chunk.cpp - compression.cpp - headers.cpp - stream.cpp -) - -END() - -RECURSE( - fuzz - list_codings - ut -) diff --git a/library/cpp/http/misc/ut/ya.make b/library/cpp/http/misc/ut/ya.make deleted file mode 100644 index 604f1c4e74..0000000000 --- a/library/cpp/http/misc/ut/ya.make +++ /dev/null @@ -1,9 +0,0 @@ -UNITTEST_FOR(library/cpp/http/misc) - -SRCS( - httpdate_ut.cpp - httpreqdata_ut.cpp - parsed_request_ut.cpp -) - -END() diff --git a/library/cpp/http/misc/ya.make b/library/cpp/http/misc/ya.make deleted file mode 100644 index 935e1f0fcc..0000000000 --- a/library/cpp/http/misc/ya.make +++ /dev/null @@ -1,20 +0,0 @@ -LIBRARY() - -GENERATE_ENUM_SERIALIZATION(httpcodes.h) - -SRCS( - httpcodes.cpp - httpdate.cpp - httpreqdata.cpp - parsed_request.cpp -) - -PEERDIR( - library/cpp/case_insensitive_string - library/cpp/cgiparam - library/cpp/digest/lower_case -) - -END() - -RECURSE_FOR_TESTS(ut) diff --git a/library/cpp/http/push_parser/ya.make b/library/cpp/http/push_parser/ya.make deleted file mode 100644 index 18289d2e9d..0000000000 --- a/library/cpp/http/push_parser/ya.make +++ /dev/null @@ -1,14 +0,0 @@ -LIBRARY() - -SRCS( - http_parser.cpp -) - -PEERDIR( - library/cpp/http/io - library/cpp/blockcodecs -) - -END() - -RECURSE_FOR_TESTS(ut) diff --git a/library/cpp/http/server/ut/ya.make b/library/cpp/http/server/ut/ya.make deleted file mode 100644 index 78911fc4f1..0000000000 --- a/library/cpp/http/server/ut/ya.make +++ /dev/null @@ -1,10 +0,0 @@ -UNITTEST_FOR(library/cpp/http/server) - -SIZE(MEDIUM) - -SRCS( - http_ut.cpp - response_ut.cpp -) - -END() diff --git a/library/cpp/http/server/ya.make b/library/cpp/http/server/ya.make deleted file mode 100644 index a37783e7ed..0000000000 --- a/library/cpp/http/server/ya.make +++ /dev/null @@ -1,22 +0,0 @@ -LIBRARY() - -SRCS( - conn.cpp - http.cpp - http_ex.cpp - options.cpp - response.cpp -) - -PEERDIR( - library/cpp/http/misc - library/cpp/http/io - library/cpp/threading/equeue - library/cpp/deprecated/atomic -) - -END() - -RECURSE_FOR_TESTS( - ut -) diff --git a/library/cpp/http/simple/ut/https_server/ya.make b/library/cpp/http/simple/ut/https_server/ya.make deleted file mode 100644 index 6a0765382d..0000000000 --- a/library/cpp/http/simple/ut/https_server/ya.make +++ /dev/null @@ -1,5 +0,0 @@ -GO_PROGRAM() - -SRCS(main.go) - -END() diff --git a/library/cpp/http/simple/ut/ya.make b/library/cpp/http/simple/ut/ya.make deleted file mode 100644 index 3f77967ea6..0000000000 --- a/library/cpp/http/simple/ut/ya.make +++ /dev/null @@ -1,21 +0,0 @@ -UNITTEST_FOR(library/cpp/http/simple) - -PEERDIR( - library/cpp/http/misc - library/cpp/testing/mock_server -) - -SRCS( - http_ut.cpp - https_ut.cpp -) - -DEPENDS(library/cpp/http/simple/ut/https_server) - -DATA(arcadia/library/cpp/http/simple/ut/https_server) - -END() - -RECURSE( - https_server -) diff --git a/library/cpp/http/simple/ya.make b/library/cpp/http/simple/ya.make deleted file mode 100644 index 3ef55c852c..0000000000 --- a/library/cpp/http/simple/ya.make +++ /dev/null @@ -1,20 +0,0 @@ -LIBRARY() - -PEERDIR( - library/cpp/http/io - library/cpp/openssl/io - library/cpp/string_utils/url - library/cpp/uri -) - -SRCS( - http_client.cpp -) - -END() - -IF (NOT OS_WINDOWS) - RECURSE_FOR_TESTS( - ut - ) -ENDIF() |