Refactoring: rename linker_allocator files

Change-Id: Ifc08e64b3a85205f072b7abab1149c7ab71e2f75
This commit is contained in:
Dmitriy Ivanov 2015-03-10 15:30:26 -07:00
parent e842dc0de5
commit c9ce70d783
6 changed files with 6 additions and 6 deletions

View File

@ -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 \

View File

@ -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"

View File

@ -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>

View File

@ -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)

View File

@ -20,7 +20,7 @@
#include <gtest/gtest.h>
#include "../linker_allocator.h"
#include "../linker_block_allocator.h"
#include <unistd.h>