diff options
author | 2018-01-04 17:56:19 -0800 | |
---|---|---|
committer | 2018-01-05 11:07:19 -0800 | |
commit | 9e734c7ab4599d7747a05db0dc73c7b668cb6683 (patch) | |
tree | dce1d1993734a947fb2e6f626eb1b425cb72143b /runtime/class_linker_test.cc | |
parent | b496af808eaf3af5ebac50aef4fbec33323b5016 (diff) |
Create dex subdirectory
Move all the DexFile related source to a common subdirectory dex/ of
runtime.
Bug: 71361973
Test: make -j 50 test-art-host
Change-Id: I59e984ed660b93e0776556308be3d653722f5223
Diffstat (limited to 'runtime/class_linker_test.cc')
-rw-r--r-- | runtime/class_linker_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/class_linker_test.cc b/runtime/class_linker_test.cc index c386883474..80ef6544e8 100644 --- a/runtime/class_linker_test.cc +++ b/runtime/class_linker_test.cc @@ -26,7 +26,8 @@ #include "base/enums.h" #include "class_linker-inl.h" #include "common_runtime_test.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" +#include "dex/standard_dex_file.h" #include "entrypoints/entrypoint_utils-inl.h" #include "experimental_flags.h" #include "gc/heap.h" @@ -50,7 +51,6 @@ #include "mirror/string-inl.h" #include "mirror/var_handle.h" #include "scoped_thread_state_change-inl.h" -#include "standard_dex_file.h" #include "thread-current-inl.h" namespace art { |