diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-15 13:35:56 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-03-15 13:35:56 +0300 |
commit | 094638589de6a6c9f91fad0005843fc1c1adc957 (patch) | |
tree | 7d55b9e950eb724da222548997547bf6710b1b58 /library/cpp/lfalloc | |
parent | bc921e787bed8a51a43725b78382e806800c44c1 (diff) | |
download | ydb-094638589de6a6c9f91fad0005843fc1c1adc957.tar.gz |
intermediate changes
ref:ca7a95e8c9a9d780f96497136a152091d54e61b5
Diffstat (limited to 'library/cpp/lfalloc')
-rw-r--r-- | library/cpp/lfalloc/alloc_profiler/ut/ya.make | 22 | ||||
-rw-r--r-- | library/cpp/lfalloc/alloc_profiler/ya.make | 17 | ||||
-rw-r--r-- | library/cpp/lfalloc/dbg/ya.make | 32 | ||||
-rw-r--r-- | library/cpp/lfalloc/dbg_info/ya.make | 15 | ||||
-rw-r--r-- | library/cpp/lfalloc/ya.make | 25 | ||||
-rw-r--r-- | library/cpp/lfalloc/yt/ya.make | 29 |
6 files changed, 0 insertions, 140 deletions
diff --git a/library/cpp/lfalloc/alloc_profiler/ut/ya.make b/library/cpp/lfalloc/alloc_profiler/ut/ya.make deleted file mode 100644 index 8a7daa74af6..00000000000 --- a/library/cpp/lfalloc/alloc_profiler/ut/ya.make +++ /dev/null @@ -1,22 +0,0 @@ -UNITTEST_FOR(library/cpp/lfalloc/alloc_profiler) - -OWNER(g:rtmr g:kikimr) - -PEERDIR( - library/cpp/testing/unittest -) - -IF (ARCH_AARCH64) - PEERDIR( - contrib/libs/jemalloc - ) -ELSE() - ALLOCATOR(LF_DBG) -ENDIF() - -SRCS( - profiler_ut.cpp - align_ut.cpp -) - -END() diff --git a/library/cpp/lfalloc/alloc_profiler/ya.make b/library/cpp/lfalloc/alloc_profiler/ya.make deleted file mode 100644 index 0f58d917678..00000000000 --- a/library/cpp/lfalloc/alloc_profiler/ya.make +++ /dev/null @@ -1,17 +0,0 @@ -LIBRARY() - -OWNER(g:rtmr g:kikimr) - -SRCS( - profiler.cpp - stackcollect.cpp -) - -PEERDIR( - library/cpp/lfalloc/dbg_info - library/cpp/cache -) - -END() - -RECURSE(ut) diff --git a/library/cpp/lfalloc/dbg/ya.make b/library/cpp/lfalloc/dbg/ya.make deleted file mode 100644 index 3dce653a8c8..00000000000 --- a/library/cpp/lfalloc/dbg/ya.make +++ /dev/null @@ -1,32 +0,0 @@ -LIBRARY() - -OWNER(vskipin) - -NO_UTIL() - -NO_COMPILER_WARNINGS() - -IF (ARCH_AARCH64) - PEERDIR( - contrib/libs/jemalloc - ) -ELSE() - IF ("${YMAKE}" MATCHES "devtools") - CFLAGS(-DYMAKE=1) - ENDIF() - CXXFLAGS( - -DLFALLOC_DBG - -DLFALLOC_YT - ) - SRCS( - ../lf_allocX64.cpp - ) -ENDIF() - -PEERDIR( - library/cpp/malloc/api -) - -SET(IDE_FOLDER "util") - -END() diff --git a/library/cpp/lfalloc/dbg_info/ya.make b/library/cpp/lfalloc/dbg_info/ya.make deleted file mode 100644 index efecba59934..00000000000 --- a/library/cpp/lfalloc/dbg_info/ya.make +++ /dev/null @@ -1,15 +0,0 @@ -LIBRARY() - -OWNER(vskipin) - -PEERDIR( - library/cpp/malloc/api -) - -SRCS( - dbg_info.cpp -) - -SET(IDE_FOLDER "util") - -END() diff --git a/library/cpp/lfalloc/ya.make b/library/cpp/lfalloc/ya.make deleted file mode 100644 index cace05f9d80..00000000000 --- a/library/cpp/lfalloc/ya.make +++ /dev/null @@ -1,25 +0,0 @@ -LIBRARY() - -OWNER(gulin) - -NO_UTIL() - -NO_COMPILER_WARNINGS() - -IF (ARCH_AARCH64) - PEERDIR( - contrib/libs/jemalloc - ) -ELSE() - SRCS( - lf_allocX64.cpp - ) -ENDIF() - -PEERDIR( - library/cpp/malloc/api -) - -SET(IDE_FOLDER "util") - -END() diff --git a/library/cpp/lfalloc/yt/ya.make b/library/cpp/lfalloc/yt/ya.make deleted file mode 100644 index 8c1a4f8a72e..00000000000 --- a/library/cpp/lfalloc/yt/ya.make +++ /dev/null @@ -1,29 +0,0 @@ -LIBRARY() - -OWNER(a-romanov) - -NO_UTIL() - -NO_COMPILER_WARNINGS() - -IF (ARCH_AARCH64) - PEERDIR( - contrib/libs/jemalloc - ) -ELSE() - IF ("${YMAKE}" MATCHES "devtools") - CFLAGS(-DYMAKE=1) - ENDIF() - CXXFLAGS(-DLFALLOC_YT) - SRCS( - ../lf_allocX64.cpp - ) -ENDIF() - -PEERDIR( - library/cpp/malloc/api -) - -SET(IDE_FOLDER "util") - -END() |