summaryrefslogtreecommitdiffstats
path: root/library/cpp/dns
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/dns')
-rw-r--r--library/cpp/dns/ut/ya.make11
-rw-r--r--library/cpp/dns/ya.make13
2 files changed, 24 insertions, 0 deletions
diff --git a/library/cpp/dns/ut/ya.make b/library/cpp/dns/ut/ya.make
new file mode 100644
index 00000000000..1382bbe431d
--- /dev/null
+++ b/library/cpp/dns/ut/ya.make
@@ -0,0 +1,11 @@
+UNITTEST()
+
+PEERDIR(
+ library/cpp/dns
+)
+
+SRCS(
+ dns_ut.cpp
+)
+
+END()
diff --git a/library/cpp/dns/ya.make b/library/cpp/dns/ya.make
new file mode 100644
index 00000000000..eea4122e5d6
--- /dev/null
+++ b/library/cpp/dns/ya.make
@@ -0,0 +1,13 @@
+LIBRARY()
+
+SRCS(
+ cache.cpp
+ thread.cpp
+ magic.cpp
+)
+
+END()
+
+RECURSE_FOR_TESTS(
+ ut
+)