Merge "Refactoring: rename linker_allocator files"

This commit is contained in:
Dmitriy Ivanov 2015-03-11 00:35:22 +00:00 committed by Gerrit Code Review
commit 57e800d534
6 changed files with 6 additions and 6 deletions

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