diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-06-13 11:05:01 +0300 |
commit | bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch) | |
tree | 1d1df72c0541a59a81439842f46d95396d3e7189 /library/cpp/html | |
parent | 8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff) | |
download | ydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz |
add ymake export to ydb
Diffstat (limited to 'library/cpp/html')
-rw-r--r-- | library/cpp/html/entity/ya.make | 19 | ||||
-rw-r--r-- | library/cpp/html/escape/ut/ya.make | 11 | ||||
-rw-r--r-- | library/cpp/html/escape/ya.make | 11 | ||||
-rw-r--r-- | library/cpp/html/pcdata/ut/ya.make | 7 | ||||
-rw-r--r-- | library/cpp/html/pcdata/ya.make | 12 |
5 files changed, 60 insertions, 0 deletions
diff --git a/library/cpp/html/entity/ya.make b/library/cpp/html/entity/ya.make new file mode 100644 index 0000000000..827e9c6b6d --- /dev/null +++ b/library/cpp/html/entity/ya.make @@ -0,0 +1,19 @@ +LIBRARY() + +SRCS( + htmlentity.cpp + decoder.rl6 +) + +SET( + RAGEL6_FLAGS + -C + -e + -F1 +) + +PEERDIR( + library/cpp/charset +) + +END() diff --git a/library/cpp/html/escape/ut/ya.make b/library/cpp/html/escape/ut/ya.make new file mode 100644 index 0000000000..605e99d2fd --- /dev/null +++ b/library/cpp/html/escape/ut/ya.make @@ -0,0 +1,11 @@ +UNITTEST() + +SRCS( + escape_ut.cpp +) + +PEERDIR( + library/cpp/html/escape +) + +END() diff --git a/library/cpp/html/escape/ya.make b/library/cpp/html/escape/ya.make new file mode 100644 index 0000000000..b5de3c9a77 --- /dev/null +++ b/library/cpp/html/escape/ya.make @@ -0,0 +1,11 @@ +LIBRARY() + +SRCS( + escape.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) diff --git a/library/cpp/html/pcdata/ut/ya.make b/library/cpp/html/pcdata/ut/ya.make new file mode 100644 index 0000000000..6d7f95627c --- /dev/null +++ b/library/cpp/html/pcdata/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/html/pcdata) + +SRCS( + pcdata_ut.cpp +) + +END() diff --git a/library/cpp/html/pcdata/ya.make b/library/cpp/html/pcdata/ya.make new file mode 100644 index 0000000000..2710d6728b --- /dev/null +++ b/library/cpp/html/pcdata/ya.make @@ -0,0 +1,12 @@ +LIBRARY() + +SRCS( + pcdata.cpp + pcdata.h +) + +END() + +RECURSE_FOR_TESTS( + ut +) |