aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/logger
diff options
context:
space:
mode:
authoralexv-smirnov <alex@ydb.tech>2023-03-28 22:25:04 +0300
committeralexv-smirnov <alex@ydb.tech>2023-03-28 22:25:04 +0300
commitb8a17f9b1c166d2e9a26b99348a4c29d972caf55 (patch)
tree1a2d881f1a9452b9c6103dbf69d73da7624e98e5 /library/cpp/logger
parent25659221f18577ea38430a8ec3349836f5626b6a (diff)
downloadydb-b8a17f9b1c166d2e9a26b99348a4c29d972caf55.tar.gz
Revert ymake build from ydb oss export
Diffstat (limited to 'library/cpp/logger')
-rw-r--r--library/cpp/logger/global/ut/ya.make13
-rw-r--r--library/cpp/logger/global/ya.make17
-rw-r--r--library/cpp/logger/init_context/ya.make13
-rw-r--r--library/cpp/logger/ut/ya.make19
-rw-r--r--library/cpp/logger/ya.make45
5 files changed, 0 insertions, 107 deletions
diff --git a/library/cpp/logger/global/ut/ya.make b/library/cpp/logger/global/ut/ya.make
deleted file mode 100644
index df11609b6c..0000000000
--- a/library/cpp/logger/global/ut/ya.make
+++ /dev/null
@@ -1,13 +0,0 @@
-UNITTEST()
-
-PEERDIR(
- library/cpp/logger/global
-)
-
-SRCDIR(library/cpp/logger/global)
-
-SRCS(
- rty_formater_ut.cpp
-)
-
-END()
diff --git a/library/cpp/logger/global/ya.make b/library/cpp/logger/global/ya.make
deleted file mode 100644
index 40f2c49a07..0000000000
--- a/library/cpp/logger/global/ya.make
+++ /dev/null
@@ -1,17 +0,0 @@
-LIBRARY()
-
-PEERDIR(
- library/cpp/logger
-)
-
-SRCS(
- common.cpp
- global.cpp
- rty_formater.cpp
-)
-
-END()
-
-RECURSE_FOR_TESTS(
- ut
-)
diff --git a/library/cpp/logger/init_context/ya.make b/library/cpp/logger/init_context/ya.make
deleted file mode 100644
index 282999948f..0000000000
--- a/library/cpp/logger/init_context/ya.make
+++ /dev/null
@@ -1,13 +0,0 @@
-LIBRARY()
-
-PEERDIR(
- library/cpp/logger
- library/cpp/config
- library/cpp/yconf
-)
-SRCS(
- config.cpp
- yconf.cpp
-)
-
-END()
diff --git a/library/cpp/logger/ut/ya.make b/library/cpp/logger/ut/ya.make
deleted file mode 100644
index c6fe244bd7..0000000000
--- a/library/cpp/logger/ut/ya.make
+++ /dev/null
@@ -1,19 +0,0 @@
-UNITTEST()
-
-PEERDIR(
- ADDINCL library/cpp/logger
- library/cpp/logger/init_context
- library/cpp/yconf/patcher
-)
-
-SRCDIR(library/cpp/logger)
-
-SRCS(
- log_ut.cpp
- element_ut.cpp
- rotating_file_ut.cpp
- composite_ut.cpp
- reopen_ut.cpp
-)
-
-END()
diff --git a/library/cpp/logger/ya.make b/library/cpp/logger/ya.make
deleted file mode 100644
index 5e426eb32e..0000000000
--- a/library/cpp/logger/ya.make
+++ /dev/null
@@ -1,45 +0,0 @@
-LIBRARY()
-
-GENERATE_ENUM_SERIALIZATION(priority.h)
-
-PEERDIR(
- library/cpp/json
- library/cpp/deprecated/atomic
-)
-
-SRCS(
- all.h
- backend.cpp
- backend_creator.cpp
- composite.cpp
- GLOBAL composite_creator.cpp
- element.cpp
- file.cpp
- GLOBAL file_creator.cpp
- filter.cpp
- filter_creator.cpp
- log.cpp
- null.cpp
- GLOBAL null_creator.cpp
- priority.h
- record.h
- rotating_file.cpp
- GLOBAL rotating_file_creator.cpp
- stream.cpp
- GLOBAL stream_creator.cpp
- sync_page_cache_file.cpp
- GLOBAL sync_page_cache_file_creator.cpp
- system.cpp
- GLOBAL system_creator.cpp
- thread.cpp
- thread_creator.cpp
- GLOBAL uninitialized_creator.cpp
- reopen.h
-)
-
-END()
-
-RECURSE(
- global
- ut
-)