diff options
author | Vladimir Marko <vmarko@google.com> | 2015-03-31 21:49:49 +0100 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2015-04-02 12:46:56 +0100 |
commit | b163bb742a099c1808907b513ae39068b63b1692 (patch) | |
tree | 37f49bab426c894a899e490243ab0e7844a390ea /build | |
parent | dc56cc509d8e1718ad321f7a91661dbe85ec8cef (diff) | |
download | art-b163bb742a099c1808907b513ae39068b63b1692.zip art-b163bb742a099c1808907b513ae39068b63b1692.tar.gz art-b163bb742a099c1808907b513ae39068b63b1692.tar.bz2 |
Refactor RelativePatcher out of OatWriter.
Move the relative patcher classes to compiler/linker/ and
compiler/linker/<arch>/ . Refactor them to avoid OatWriter
dependency so that they can be unit tested. Add tests for
x86 and x86-64.
Change-Id: I1b42baa9fc431378e4cce1399bec590c5b5a409f
Diffstat (limited to 'build')
-rw-r--r-- | build/Android.gtest.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/Android.gtest.mk b/build/Android.gtest.mk index 1a4c30c..58a3290 100644 --- a/build/Android.gtest.mk +++ b/build/Android.gtest.mk @@ -193,6 +193,8 @@ COMPILER_GTEST_COMMON_SRC_FILES := \ compiler/elf_writer_test.cc \ compiler/image_test.cc \ compiler/jni/jni_compiler_test.cc \ + compiler/linker/x86/relative_patcher_x86_test.cc \ + compiler/linker/x86_64/relative_patcher_x86_64_test.cc \ compiler/oat_test.cc \ compiler/optimizing/bounds_check_elimination_test.cc \ compiler/optimizing/codegen_test.cc \ |