summaryrefslogtreecommitdiffstats
path: root/library/cpp/http/simple
diff options
context:
space:
mode:
authoralexv-smirnov <[email protected]>2023-06-13 11:05:01 +0300
committeralexv-smirnov <[email protected]>2023-06-13 11:05:01 +0300
commitbf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch)
tree1d1df72c0541a59a81439842f46d95396d3e7189 /library/cpp/http/simple
parent8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff)
add ymake export to ydb
Diffstat (limited to 'library/cpp/http/simple')
-rw-r--r--library/cpp/http/simple/ut/https_server/ya.make5
-rw-r--r--library/cpp/http/simple/ut/ya.make21
-rw-r--r--library/cpp/http/simple/ya.make20
3 files changed, 46 insertions, 0 deletions
diff --git a/library/cpp/http/simple/ut/https_server/ya.make b/library/cpp/http/simple/ut/https_server/ya.make
new file mode 100644
index 00000000000..6a0765382d9
--- /dev/null
+++ b/library/cpp/http/simple/ut/https_server/ya.make
@@ -0,0 +1,5 @@
+GO_PROGRAM()
+
+SRCS(main.go)
+
+END()
diff --git a/library/cpp/http/simple/ut/ya.make b/library/cpp/http/simple/ut/ya.make
new file mode 100644
index 00000000000..3f77967ea67
--- /dev/null
+++ b/library/cpp/http/simple/ut/ya.make
@@ -0,0 +1,21 @@
+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
new file mode 100644
index 00000000000..3ef55c852cf
--- /dev/null
+++ b/library/cpp/http/simple/ya.make
@@ -0,0 +1,20 @@
+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()