d6b3a2a0a3
Find leaks that have no references at all, or are only referenced by
other leaks in the same strongly connected component, and hide all
referenced leaks.
Bug: 27208635
Change-Id: Ifbfd14e24e2ba0f8af7c1b887e57f34362720f2d
(cherry picked from commit 8e8f34c558
)
64 lines
1.7 KiB
Makefile
64 lines
1.7 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
memunreachable_srcs := \
|
|
Allocator.cpp \
|
|
HeapWalker.cpp \
|
|
LeakFolding.cpp \
|
|
LeakPipe.cpp \
|
|
LineBuffer.cpp \
|
|
MemUnreachable.cpp \
|
|
ProcessMappings.cpp \
|
|
PtracerThread.cpp \
|
|
ThreadCapture.cpp \
|
|
|
|
memunreachable_test_srcs := \
|
|
tests/Allocator_test.cpp \
|
|
tests/DisableMalloc_test.cpp \
|
|
tests/HeapWalker_test.cpp \
|
|
tests/LeakFolding_test.cpp \
|
|
tests/MemUnreachable_test.cpp \
|
|
tests/ThreadCapture_test.cpp \
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libmemunreachable
|
|
LOCAL_SRC_FILES := $(memunreachable_srcs)
|
|
LOCAL_CFLAGS := -std=c++14 -Wall -Wextra -Werror
|
|
LOCAL_SHARED_LIBRARIES := libbase liblog
|
|
LOCAL_STATIC_LIBRARIES := libc_malloc_debug_backtrace libc_logging
|
|
# Only need this for arm since libc++ uses its own unwind code that
|
|
# doesn't mix with the other default unwind code.
|
|
LOCAL_STATIC_LIBRARIES_arm := libunwind_llvm
|
|
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
|
|
LOCAL_CLANG := true
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := memunreachable_test
|
|
LOCAL_SRC_FILES := $(memunreachable_test_srcs)
|
|
LOCAL_CFLAGS := -std=c++14 -Wall -Wextra -Werror
|
|
LOCAL_CLANG := true
|
|
LOCAL_SHARED_LIBRARIES := libmemunreachable libbase liblog
|
|
|
|
include $(BUILD_NATIVE_TEST)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := memunreachable_test
|
|
LOCAL_SRC_FILES := \
|
|
Allocator.cpp \
|
|
HeapWalker.cpp \
|
|
LeakFolding.cpp \
|
|
tests/Allocator_test.cpp \
|
|
tests/HeapWalker_test.cpp \
|
|
tests/HostMallocStub.cpp \
|
|
tests/LeakFolding_test.cpp \
|
|
|
|
LOCAL_CFLAGS := -std=c++14 -Wall -Wextra -Werror
|
|
LOCAL_CLANG := true
|
|
LOCAL_SHARED_LIBRARIES := libbase liblog
|
|
|
|
include $(BUILD_HOST_NATIVE_TEST)
|