diff options
| author | alexv-smirnov <[email protected]> | 2023-06-13 11:05:01 +0300 |
|---|---|---|
| committer | alexv-smirnov <[email protected]> | 2023-06-13 11:05:01 +0300 |
| commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
| tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /library/cpp/http/misc | |
| parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
add ymake export to ydb
Diffstat (limited to 'library/cpp/http/misc')
| -rw-r--r-- | library/cpp/http/misc/ut/ya.make | 9 | ||||
| -rw-r--r-- | library/cpp/http/misc/ya.make | 20 |
2 files changed, 29 insertions, 0 deletions
diff --git a/library/cpp/http/misc/ut/ya.make b/library/cpp/http/misc/ut/ya.make new file mode 100644 index 00000000000..604f1c4e749 --- /dev/null +++ b/library/cpp/http/misc/ut/ya.make @@ -0,0 +1,9 @@ +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 new file mode 100644 index 00000000000..935e1f0fcc5 --- /dev/null +++ b/library/cpp/http/misc/ya.make @@ -0,0 +1,20 @@ +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) |
