summaryrefslogtreecommitdiffstats
path: root/library/cpp/http
diff options
context:
space:
mode:
authorarmenqa <[email protected]>2024-01-19 12:23:50 +0300
committerarmenqa <[email protected]>2024-01-19 13:10:03 +0300
commit2de0149d0151c514b22bca0760b95b26c9b0b578 (patch)
tree2bfed9f3bce7e643ddf048bb61ce3dc0a714bcc2 /library/cpp/http
parenta8c06d218f12b2406fbce24d194885c5d7b68503 (diff)
feat contrib: aiogram 3
Relates: https://st.yandex-team.ru/, https://st.yandex-team.ru/
Diffstat (limited to 'library/cpp/http')
-rw-r--r--library/cpp/http/CMakeLists.txt13
-rw-r--r--library/cpp/http/fetch/CMakeLists.darwin-arm64.txt45
-rw-r--r--library/cpp/http/fetch/CMakeLists.darwin-x86_64.txt45
-rw-r--r--library/cpp/http/fetch/CMakeLists.linux-aarch64.txt46
-rw-r--r--library/cpp/http/fetch/CMakeLists.linux-x86_64.txt46
-rw-r--r--library/cpp/http/fetch/CMakeLists.txt19
-rw-r--r--library/cpp/http/fetch/CMakeLists.windows-x86_64.txt45
-rw-r--r--library/cpp/http/io/CMakeLists.darwin-arm64.txt24
-rw-r--r--library/cpp/http/io/CMakeLists.darwin-x86_64.txt24
-rw-r--r--library/cpp/http/io/CMakeLists.linux-aarch64.txt25
-rw-r--r--library/cpp/http/io/CMakeLists.linux-x86_64.txt25
-rw-r--r--library/cpp/http/io/CMakeLists.txt19
-rw-r--r--library/cpp/http/io/CMakeLists.windows-x86_64.txt24
-rw-r--r--library/cpp/http/misc/CMakeLists.darwin-arm64.txt35
-rw-r--r--library/cpp/http/misc/CMakeLists.darwin-x86_64.txt35
-rw-r--r--library/cpp/http/misc/CMakeLists.linux-aarch64.txt36
-rw-r--r--library/cpp/http/misc/CMakeLists.linux-x86_64.txt36
-rw-r--r--library/cpp/http/misc/CMakeLists.txt19
-rw-r--r--library/cpp/http/misc/CMakeLists.windows-x86_64.txt35
-rw-r--r--library/cpp/http/server/CMakeLists.darwin-arm64.txt25
-rw-r--r--library/cpp/http/server/CMakeLists.darwin-x86_64.txt25
-rw-r--r--library/cpp/http/server/CMakeLists.linux-aarch64.txt26
-rw-r--r--library/cpp/http/server/CMakeLists.linux-x86_64.txt26
-rw-r--r--library/cpp/http/server/CMakeLists.txt19
-rw-r--r--library/cpp/http/server/CMakeLists.windows-x86_64.txt25
-rw-r--r--library/cpp/http/simple/CMakeLists.darwin-arm64.txt21
-rw-r--r--library/cpp/http/simple/CMakeLists.darwin-x86_64.txt21
-rw-r--r--library/cpp/http/simple/CMakeLists.linux-aarch64.txt22
-rw-r--r--library/cpp/http/simple/CMakeLists.linux-x86_64.txt22
-rw-r--r--library/cpp/http/simple/CMakeLists.txt19
-rw-r--r--library/cpp/http/simple/CMakeLists.windows-x86_64.txt21
31 files changed, 0 insertions, 868 deletions
diff --git a/library/cpp/http/CMakeLists.txt b/library/cpp/http/CMakeLists.txt
deleted file mode 100644
index 302c9d6c7e1..00000000000
--- a/library/cpp/http/CMakeLists.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-add_subdirectory(fetch)
-add_subdirectory(io)
-add_subdirectory(misc)
-add_subdirectory(server)
-add_subdirectory(simple)
diff --git a/library/cpp/http/fetch/CMakeLists.darwin-arm64.txt b/library/cpp/http/fetch/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index 553e7fc0354..00000000000
--- a/library/cpp/http/fetch/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,45 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-get_built_tool_path(
- TOOL_enum_parser_bin
- TOOL_enum_parser_dependency
- tools/enum_parser/enum_parser
- enum_parser
-)
-
-add_library(cpp-http-fetch)
-target_link_libraries(cpp-http-fetch PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-zlib
- library-cpp-charset
- cpp-digest-md5
- cpp-http-misc
- library-cpp-logger
- cpp-mime-types
- library-cpp-uri
- tools-enum_parser-enum_serialization_runtime
-)
-target_sources(cpp-http-fetch PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/http_digest.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/http_socket.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpheader.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpload.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/exthttpcodes.cpp
-)
-generate_enum_serilization(cpp-http-fetch
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpheader.h
- INCLUDE_HEADERS
- library/cpp/http/fetch/httpheader.h
-)
-target_ragel_lexers(cpp-http-fetch
- PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpfsm.rl6
- -CG1
-)
diff --git a/library/cpp/http/fetch/CMakeLists.darwin-x86_64.txt b/library/cpp/http/fetch/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index 553e7fc0354..00000000000
--- a/library/cpp/http/fetch/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,45 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-get_built_tool_path(
- TOOL_enum_parser_bin
- TOOL_enum_parser_dependency
- tools/enum_parser/enum_parser
- enum_parser
-)
-
-add_library(cpp-http-fetch)
-target_link_libraries(cpp-http-fetch PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-zlib
- library-cpp-charset
- cpp-digest-md5
- cpp-http-misc
- library-cpp-logger
- cpp-mime-types
- library-cpp-uri
- tools-enum_parser-enum_serialization_runtime
-)
-target_sources(cpp-http-fetch PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/http_digest.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/http_socket.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpheader.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpload.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/exthttpcodes.cpp
-)
-generate_enum_serilization(cpp-http-fetch
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpheader.h
- INCLUDE_HEADERS
- library/cpp/http/fetch/httpheader.h
-)
-target_ragel_lexers(cpp-http-fetch
- PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpfsm.rl6
- -CG1
-)
diff --git a/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt b/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index 4de49d554de..00000000000
--- a/library/cpp/http/fetch/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,46 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-get_built_tool_path(
- TOOL_enum_parser_bin
- TOOL_enum_parser_dependency
- tools/enum_parser/enum_parser
- enum_parser
-)
-
-add_library(cpp-http-fetch)
-target_link_libraries(cpp-http-fetch PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- contrib-libs-zlib
- library-cpp-charset
- cpp-digest-md5
- cpp-http-misc
- library-cpp-logger
- cpp-mime-types
- library-cpp-uri
- tools-enum_parser-enum_serialization_runtime
-)
-target_sources(cpp-http-fetch PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/http_digest.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/http_socket.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpheader.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpload.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/exthttpcodes.cpp
-)
-generate_enum_serilization(cpp-http-fetch
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpheader.h
- INCLUDE_HEADERS
- library/cpp/http/fetch/httpheader.h
-)
-target_ragel_lexers(cpp-http-fetch
- PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpfsm.rl6
- -CG1
-)
diff --git a/library/cpp/http/fetch/CMakeLists.linux-x86_64.txt b/library/cpp/http/fetch/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index 4de49d554de..00000000000
--- a/library/cpp/http/fetch/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,46 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-get_built_tool_path(
- TOOL_enum_parser_bin
- TOOL_enum_parser_dependency
- tools/enum_parser/enum_parser
- enum_parser
-)
-
-add_library(cpp-http-fetch)
-target_link_libraries(cpp-http-fetch PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- contrib-libs-zlib
- library-cpp-charset
- cpp-digest-md5
- cpp-http-misc
- library-cpp-logger
- cpp-mime-types
- library-cpp-uri
- tools-enum_parser-enum_serialization_runtime
-)
-target_sources(cpp-http-fetch PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/http_digest.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/http_socket.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpheader.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpload.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/exthttpcodes.cpp
-)
-generate_enum_serilization(cpp-http-fetch
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpheader.h
- INCLUDE_HEADERS
- library/cpp/http/fetch/httpheader.h
-)
-target_ragel_lexers(cpp-http-fetch
- PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpfsm.rl6
- -CG1
-)
diff --git a/library/cpp/http/fetch/CMakeLists.txt b/library/cpp/http/fetch/CMakeLists.txt
deleted file mode 100644
index d863ebd1806..00000000000
--- a/library/cpp/http/fetch/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/http/fetch/CMakeLists.windows-x86_64.txt b/library/cpp/http/fetch/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index 553e7fc0354..00000000000
--- a/library/cpp/http/fetch/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,45 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-get_built_tool_path(
- TOOL_enum_parser_bin
- TOOL_enum_parser_dependency
- tools/enum_parser/enum_parser
- enum_parser
-)
-
-add_library(cpp-http-fetch)
-target_link_libraries(cpp-http-fetch PUBLIC
- contrib-libs-cxxsupp
- yutil
- contrib-libs-zlib
- library-cpp-charset
- cpp-digest-md5
- cpp-http-misc
- library-cpp-logger
- cpp-mime-types
- library-cpp-uri
- tools-enum_parser-enum_serialization_runtime
-)
-target_sources(cpp-http-fetch PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/http_digest.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/http_socket.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpheader.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpload.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/exthttpcodes.cpp
-)
-generate_enum_serilization(cpp-http-fetch
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpheader.h
- INCLUDE_HEADERS
- library/cpp/http/fetch/httpheader.h
-)
-target_ragel_lexers(cpp-http-fetch
- PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/fetch/httpfsm.rl6
- -CG1
-)
diff --git a/library/cpp/http/io/CMakeLists.darwin-arm64.txt b/library/cpp/http/io/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index 1f1eab359c5..00000000000
--- a/library/cpp/http/io/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-io)
-target_link_libraries(cpp-http-io PUBLIC
- contrib-libs-cxxsupp
- yutil
- library-cpp-blockcodecs
- cpp-streams-brotli
- cpp-streams-bzip2
- cpp-streams-lzma
-)
-target_sources(cpp-http-io PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/chunk.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/compression.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/headers.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/stream.cpp
-)
diff --git a/library/cpp/http/io/CMakeLists.darwin-x86_64.txt b/library/cpp/http/io/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index 1f1eab359c5..00000000000
--- a/library/cpp/http/io/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-io)
-target_link_libraries(cpp-http-io PUBLIC
- contrib-libs-cxxsupp
- yutil
- library-cpp-blockcodecs
- cpp-streams-brotli
- cpp-streams-bzip2
- cpp-streams-lzma
-)
-target_sources(cpp-http-io PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/chunk.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/compression.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/headers.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/stream.cpp
-)
diff --git a/library/cpp/http/io/CMakeLists.linux-aarch64.txt b/library/cpp/http/io/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index fb6cf45467e..00000000000
--- a/library/cpp/http/io/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-io)
-target_link_libraries(cpp-http-io PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- library-cpp-blockcodecs
- cpp-streams-brotli
- cpp-streams-bzip2
- cpp-streams-lzma
-)
-target_sources(cpp-http-io PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/chunk.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/compression.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/headers.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/stream.cpp
-)
diff --git a/library/cpp/http/io/CMakeLists.linux-x86_64.txt b/library/cpp/http/io/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index fb6cf45467e..00000000000
--- a/library/cpp/http/io/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-io)
-target_link_libraries(cpp-http-io PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- library-cpp-blockcodecs
- cpp-streams-brotli
- cpp-streams-bzip2
- cpp-streams-lzma
-)
-target_sources(cpp-http-io PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/chunk.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/compression.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/headers.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/stream.cpp
-)
diff --git a/library/cpp/http/io/CMakeLists.txt b/library/cpp/http/io/CMakeLists.txt
deleted file mode 100644
index d863ebd1806..00000000000
--- a/library/cpp/http/io/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/http/io/CMakeLists.windows-x86_64.txt b/library/cpp/http/io/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index 1f1eab359c5..00000000000
--- a/library/cpp/http/io/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-io)
-target_link_libraries(cpp-http-io PUBLIC
- contrib-libs-cxxsupp
- yutil
- library-cpp-blockcodecs
- cpp-streams-brotli
- cpp-streams-bzip2
- cpp-streams-lzma
-)
-target_sources(cpp-http-io PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/chunk.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/compression.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/headers.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/io/stream.cpp
-)
diff --git a/library/cpp/http/misc/CMakeLists.darwin-arm64.txt b/library/cpp/http/misc/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index c909854a9a7..00000000000
--- a/library/cpp/http/misc/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-get_built_tool_path(
- TOOL_enum_parser_bin
- TOOL_enum_parser_dependency
- tools/enum_parser/enum_parser
- enum_parser
-)
-
-add_library(cpp-http-misc)
-target_link_libraries(cpp-http-misc PUBLIC
- contrib-libs-cxxsupp
- yutil
- tools-enum_parser-enum_serialization_runtime
- library-cpp-case_insensitive_string
- library-cpp-cgiparam
- cpp-digest-lower_case
-)
-target_sources(cpp-http-misc PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpcodes.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpdate.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpreqdata.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/parsed_request.cpp
-)
-generate_enum_serilization(cpp-http-misc
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpcodes.h
- INCLUDE_HEADERS
- library/cpp/http/misc/httpcodes.h
-)
diff --git a/library/cpp/http/misc/CMakeLists.darwin-x86_64.txt b/library/cpp/http/misc/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index c909854a9a7..00000000000
--- a/library/cpp/http/misc/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-get_built_tool_path(
- TOOL_enum_parser_bin
- TOOL_enum_parser_dependency
- tools/enum_parser/enum_parser
- enum_parser
-)
-
-add_library(cpp-http-misc)
-target_link_libraries(cpp-http-misc PUBLIC
- contrib-libs-cxxsupp
- yutil
- tools-enum_parser-enum_serialization_runtime
- library-cpp-case_insensitive_string
- library-cpp-cgiparam
- cpp-digest-lower_case
-)
-target_sources(cpp-http-misc PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpcodes.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpdate.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpreqdata.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/parsed_request.cpp
-)
-generate_enum_serilization(cpp-http-misc
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpcodes.h
- INCLUDE_HEADERS
- library/cpp/http/misc/httpcodes.h
-)
diff --git a/library/cpp/http/misc/CMakeLists.linux-aarch64.txt b/library/cpp/http/misc/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index 026af909922..00000000000
--- a/library/cpp/http/misc/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-get_built_tool_path(
- TOOL_enum_parser_bin
- TOOL_enum_parser_dependency
- tools/enum_parser/enum_parser
- enum_parser
-)
-
-add_library(cpp-http-misc)
-target_link_libraries(cpp-http-misc PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- tools-enum_parser-enum_serialization_runtime
- library-cpp-case_insensitive_string
- library-cpp-cgiparam
- cpp-digest-lower_case
-)
-target_sources(cpp-http-misc PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpcodes.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpdate.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpreqdata.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/parsed_request.cpp
-)
-generate_enum_serilization(cpp-http-misc
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpcodes.h
- INCLUDE_HEADERS
- library/cpp/http/misc/httpcodes.h
-)
diff --git a/library/cpp/http/misc/CMakeLists.linux-x86_64.txt b/library/cpp/http/misc/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index 026af909922..00000000000
--- a/library/cpp/http/misc/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-get_built_tool_path(
- TOOL_enum_parser_bin
- TOOL_enum_parser_dependency
- tools/enum_parser/enum_parser
- enum_parser
-)
-
-add_library(cpp-http-misc)
-target_link_libraries(cpp-http-misc PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- tools-enum_parser-enum_serialization_runtime
- library-cpp-case_insensitive_string
- library-cpp-cgiparam
- cpp-digest-lower_case
-)
-target_sources(cpp-http-misc PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpcodes.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpdate.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpreqdata.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/parsed_request.cpp
-)
-generate_enum_serilization(cpp-http-misc
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpcodes.h
- INCLUDE_HEADERS
- library/cpp/http/misc/httpcodes.h
-)
diff --git a/library/cpp/http/misc/CMakeLists.txt b/library/cpp/http/misc/CMakeLists.txt
deleted file mode 100644
index d863ebd1806..00000000000
--- a/library/cpp/http/misc/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/http/misc/CMakeLists.windows-x86_64.txt b/library/cpp/http/misc/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index c909854a9a7..00000000000
--- a/library/cpp/http/misc/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-get_built_tool_path(
- TOOL_enum_parser_bin
- TOOL_enum_parser_dependency
- tools/enum_parser/enum_parser
- enum_parser
-)
-
-add_library(cpp-http-misc)
-target_link_libraries(cpp-http-misc PUBLIC
- contrib-libs-cxxsupp
- yutil
- tools-enum_parser-enum_serialization_runtime
- library-cpp-case_insensitive_string
- library-cpp-cgiparam
- cpp-digest-lower_case
-)
-target_sources(cpp-http-misc PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpcodes.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpdate.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpreqdata.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/parsed_request.cpp
-)
-generate_enum_serilization(cpp-http-misc
- ${CMAKE_SOURCE_DIR}/library/cpp/http/misc/httpcodes.h
- INCLUDE_HEADERS
- library/cpp/http/misc/httpcodes.h
-)
diff --git a/library/cpp/http/server/CMakeLists.darwin-arm64.txt b/library/cpp/http/server/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index 9d8b2182bab..00000000000
--- a/library/cpp/http/server/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-server)
-target_link_libraries(cpp-http-server PUBLIC
- contrib-libs-cxxsupp
- yutil
- cpp-http-misc
- cpp-http-io
- cpp-threading-equeue
- cpp-deprecated-atomic
-)
-target_sources(cpp-http-server PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/conn.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/http.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/http_ex.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/options.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/response.cpp
-)
diff --git a/library/cpp/http/server/CMakeLists.darwin-x86_64.txt b/library/cpp/http/server/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index 9d8b2182bab..00000000000
--- a/library/cpp/http/server/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-server)
-target_link_libraries(cpp-http-server PUBLIC
- contrib-libs-cxxsupp
- yutil
- cpp-http-misc
- cpp-http-io
- cpp-threading-equeue
- cpp-deprecated-atomic
-)
-target_sources(cpp-http-server PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/conn.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/http.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/http_ex.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/options.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/response.cpp
-)
diff --git a/library/cpp/http/server/CMakeLists.linux-aarch64.txt b/library/cpp/http/server/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index be781cf25a9..00000000000
--- a/library/cpp/http/server/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-server)
-target_link_libraries(cpp-http-server PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- cpp-http-misc
- cpp-http-io
- cpp-threading-equeue
- cpp-deprecated-atomic
-)
-target_sources(cpp-http-server PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/conn.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/http.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/http_ex.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/options.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/response.cpp
-)
diff --git a/library/cpp/http/server/CMakeLists.linux-x86_64.txt b/library/cpp/http/server/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index be781cf25a9..00000000000
--- a/library/cpp/http/server/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-server)
-target_link_libraries(cpp-http-server PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- cpp-http-misc
- cpp-http-io
- cpp-threading-equeue
- cpp-deprecated-atomic
-)
-target_sources(cpp-http-server PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/conn.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/http.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/http_ex.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/options.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/response.cpp
-)
diff --git a/library/cpp/http/server/CMakeLists.txt b/library/cpp/http/server/CMakeLists.txt
deleted file mode 100644
index d863ebd1806..00000000000
--- a/library/cpp/http/server/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/http/server/CMakeLists.windows-x86_64.txt b/library/cpp/http/server/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index 9d8b2182bab..00000000000
--- a/library/cpp/http/server/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,25 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-server)
-target_link_libraries(cpp-http-server PUBLIC
- contrib-libs-cxxsupp
- yutil
- cpp-http-misc
- cpp-http-io
- cpp-threading-equeue
- cpp-deprecated-atomic
-)
-target_sources(cpp-http-server PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/conn.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/http.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/http_ex.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/options.cpp
- ${CMAKE_SOURCE_DIR}/library/cpp/http/server/response.cpp
-)
diff --git a/library/cpp/http/simple/CMakeLists.darwin-arm64.txt b/library/cpp/http/simple/CMakeLists.darwin-arm64.txt
deleted file mode 100644
index 68c2fb64a3b..00000000000
--- a/library/cpp/http/simple/CMakeLists.darwin-arm64.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-simple)
-target_link_libraries(cpp-http-simple PUBLIC
- contrib-libs-cxxsupp
- yutil
- cpp-http-io
- cpp-openssl-io
- cpp-string_utils-url
- library-cpp-uri
-)
-target_sources(cpp-http-simple PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/simple/http_client.cpp
-)
diff --git a/library/cpp/http/simple/CMakeLists.darwin-x86_64.txt b/library/cpp/http/simple/CMakeLists.darwin-x86_64.txt
deleted file mode 100644
index 68c2fb64a3b..00000000000
--- a/library/cpp/http/simple/CMakeLists.darwin-x86_64.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-simple)
-target_link_libraries(cpp-http-simple PUBLIC
- contrib-libs-cxxsupp
- yutil
- cpp-http-io
- cpp-openssl-io
- cpp-string_utils-url
- library-cpp-uri
-)
-target_sources(cpp-http-simple PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/simple/http_client.cpp
-)
diff --git a/library/cpp/http/simple/CMakeLists.linux-aarch64.txt b/library/cpp/http/simple/CMakeLists.linux-aarch64.txt
deleted file mode 100644
index 970d858e0e0..00000000000
--- a/library/cpp/http/simple/CMakeLists.linux-aarch64.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-simple)
-target_link_libraries(cpp-http-simple PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- cpp-http-io
- cpp-openssl-io
- cpp-string_utils-url
- library-cpp-uri
-)
-target_sources(cpp-http-simple PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/simple/http_client.cpp
-)
diff --git a/library/cpp/http/simple/CMakeLists.linux-x86_64.txt b/library/cpp/http/simple/CMakeLists.linux-x86_64.txt
deleted file mode 100644
index 970d858e0e0..00000000000
--- a/library/cpp/http/simple/CMakeLists.linux-x86_64.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-simple)
-target_link_libraries(cpp-http-simple PUBLIC
- contrib-libs-linux-headers
- contrib-libs-cxxsupp
- yutil
- cpp-http-io
- cpp-openssl-io
- cpp-string_utils-url
- library-cpp-uri
-)
-target_sources(cpp-http-simple PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/simple/http_client.cpp
-)
diff --git a/library/cpp/http/simple/CMakeLists.txt b/library/cpp/http/simple/CMakeLists.txt
deleted file mode 100644
index d863ebd1806..00000000000
--- a/library/cpp/http/simple/CMakeLists.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" AND NOT HAVE_CUDA)
- include(CMakeLists.linux-aarch64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
- include(CMakeLists.darwin-x86_64.txt)
-elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
- include(CMakeLists.darwin-arm64.txt)
-elseif (WIN32 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" AND NOT HAVE_CUDA)
- include(CMakeLists.windows-x86_64.txt)
-endif()
diff --git a/library/cpp/http/simple/CMakeLists.windows-x86_64.txt b/library/cpp/http/simple/CMakeLists.windows-x86_64.txt
deleted file mode 100644
index 68c2fb64a3b..00000000000
--- a/library/cpp/http/simple/CMakeLists.windows-x86_64.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-
-# This file was generated by the build system used internally in the Yandex monorepo.
-# Only simple modifications are allowed (adding source-files to targets, adding simple properties
-# like target_include_directories). These modifications will be ported to original
-# ya.make files by maintainers. Any complex modifications which can't be ported back to the
-# original buildsystem will not be accepted.
-
-
-
-add_library(cpp-http-simple)
-target_link_libraries(cpp-http-simple PUBLIC
- contrib-libs-cxxsupp
- yutil
- cpp-http-io
- cpp-openssl-io
- cpp-string_utils-url
- library-cpp-uri
-)
-target_sources(cpp-http-simple PRIVATE
- ${CMAKE_SOURCE_DIR}/library/cpp/http/simple/http_client.cpp
-)