Refactoring: rename linker_allocator files
Change-Id: Ifc08e64b3a85205f072b7abab1149c7ab71e2f75
This commit is contained in:
parent
e842dc0de5
commit
c9ce70d783
|
@ -6,7 +6,7 @@ LOCAL_SRC_FILES:= \
|
|||
debugger.cpp \
|
||||
dlfcn.cpp \
|
||||
linker.cpp \
|
||||
linker_allocator.cpp \
|
||||
linker_block_allocator.cpp \
|
||||
linker_environ.cpp \
|
||||
linker_libc_support.c \
|
||||
linker_phdr.cpp \
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
#include "private/UniquePtr.h"
|
||||
|
||||
#include "linker.h"
|
||||
#include "linker_allocator.h"
|
||||
#include "linker_block_allocator.h"
|
||||
#include "linker_debug.h"
|
||||
#include "linker_environ.h"
|
||||
#include "linker_leb128.h"
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "linker_allocator.h"
|
||||
#include "linker_block_allocator.h"
|
||||
#include <inttypes.h>
|
||||
#include <string.h>
|
||||
#include <sys/mman.h>
|
|
@ -28,7 +28,7 @@ LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../libc/
|
|||
|
||||
LOCAL_SRC_FILES := \
|
||||
linked_list_test.cpp \
|
||||
linker_allocator_test.cpp \
|
||||
../linker_allocator.cpp
|
||||
linker_block_allocator_test.cpp \
|
||||
../linker_block_allocator.cpp
|
||||
|
||||
include $(BUILD_NATIVE_TEST)
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include "../linker_allocator.h"
|
||||
#include "../linker_block_allocator.h"
|
||||
|
||||
#include <unistd.h>
|
||||
|
Loading…
Reference in New Issue