diff options
| author | 2017-07-18 16:53:49 -0700 | |
|---|---|---|
| committer | 2017-07-18 18:25:55 -0700 | |
| commit | e431e2758d62cf56f7f347f5a8c9d79e41b6dcd7 (patch) | |
| tree | b8733533e2478069aabbdc3a34d0f40aff33e1b1 /compiler/driver/compiler_driver.cc | |
| parent | b98d384eb424ad7e1dc9816392ded33dce0e0372 (diff) | |
art: use proper nativehelper headers
libnativeheader exports headers under nativeheader. These were
available before incorrectly as global headers in order to give
access to jni.h.
Test: modules using art find headers
Bug: 63762847
Change-Id: I5c820d677e94e07b2859e78610bc997fe51b41dc
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index 83d7a3d4cc..b3160dd900 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -41,31 +41,31 @@ #include "compiler.h" #include "compiler_callbacks.h" #include "compiler_driver-inl.h" -#include "dex_compilation_unit.h" -#include "dex_file-inl.h" -#include "dex_instruction-inl.h" #include "dex/dex_to_dex_compiler.h" #include "dex/verification_results.h" #include "dex/verified_method.h" +#include "dex_compilation_unit.h" +#include "dex_file-inl.h" +#include "dex_instruction-inl.h" #include "driver/compiler_options.h" -#include "intrinsics_enum.h" -#include "jni_internal.h" -#include "object_lock.h" -#include "runtime.h" #include "gc/accounting/card_table-inl.h" #include "gc/accounting/heap_bitmap.h" #include "gc/space/image_space.h" #include "gc/space/space.h" -#include "mirror/class_loader.h" +#include "handle_scope-inl.h" +#include "intrinsics_enum.h" +#include "jni_internal.h" #include "mirror/class-inl.h" +#include "mirror/class_loader.h" #include "mirror/dex_cache-inl.h" #include "mirror/object-inl.h" #include "mirror/object-refvisitor-inl.h" #include "mirror/object_array-inl.h" #include "mirror/throwable.h" +#include "nativehelper/ScopedLocalRef.h" +#include "object_lock.h" +#include "runtime.h" #include "scoped_thread_state_change-inl.h" -#include "ScopedLocalRef.h" -#include "handle_scope-inl.h" #include "thread.h" #include "thread_list.h" #include "thread_pool.h" @@ -75,8 +75,8 @@ #include "utils/dex_cache_arrays_layout-inl.h" #include "utils/swap_space.h" #include "vdex_file.h" -#include "verifier/method_verifier.h" #include "verifier/method_verifier-inl.h" +#include "verifier/method_verifier.h" #include "verifier/verifier_deps.h" #include "verifier/verifier_enums.h" |