diff options
author | Andreas Gampe <agampe@google.com> | 2015-04-15 02:37:28 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-04-21 15:03:15 -0700 |
commit | 70bef0d8f6aa30b0da5c6ca56e1bc5729f74654b (patch) | |
tree | aea4a31294c5a6a30c52ee886d5884a0b5b84fde /build | |
parent | bbf02afc641a393d33342976e269218668c07386 (diff) | |
download | art-70bef0d8f6aa30b0da5c6ca56e1bc5729f74654b.zip art-70bef0d8f6aa30b0da5c6ca56e1bc5729f74654b.tar.gz art-70bef0d8f6aa30b0da5c6ca56e1bc5729f74654b.tar.bz2 |
ART: Add compiled-methods
Add a dex2oat option for compiled-methods, a more granular filter
than compiled-classes. Add compiler-driver support for it.
Refactor dex2oat to reuse file reading.
Add a test to oat_test.
Change-Id: I78d0d040bce7738b4bb7aabe7768b5788d2587ac
Diffstat (limited to 'build')
-rw-r--r-- | build/Android.gtest.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/Android.gtest.mk b/build/Android.gtest.mk index 8c61871..e0f0ae5 100644 --- a/build/Android.gtest.mk +++ b/build/Android.gtest.mk @@ -61,7 +61,7 @@ $(ART_TEST_TARGET_GTEST_MainStripped_DEX): $(ART_TEST_TARGET_GTEST_Main_DEX) # Dex file dependencies for each gtest. ART_GTEST_class_linker_test_DEX_DEPS := Interfaces MultiDex MyClass Nested Statics StaticsFromCode -ART_GTEST_compiler_driver_test_DEX_DEPS := AbstractMethod +ART_GTEST_compiler_driver_test_DEX_DEPS := AbstractMethod StaticLeafMethods ART_GTEST_dex_file_test_DEX_DEPS := GetMethodSignature Main Nested ART_GTEST_exception_test_DEX_DEPS := ExceptionHandle ART_GTEST_jni_compiler_test_DEX_DEPS := MyClassNatives |