This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
project art/ | |
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc | |
index a8ab7c6..2bb04a2 100644 | |
--- a/compiler/driver/compiler_driver.cc | |
+++ b/compiler/driver/compiler_driver.cc | |
@@ -442,7 +442,7 @@ void CompilerDriver::CompileAll(jobject class_loader, | |
// We do not decompile a RETURN_VOID_NO_BARRIER into a RETURN_VOID, as the quickening | |
// optimization does not depend on the boot image (the optimization relies on not | |
// having final fields in a class, which does not change for an app). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/oatdump/Android.bp b/oatdump/Android.bp | |
index 71e276d..3d50229 100644 | |
--- a/oatdump/Android.bp | |
+++ b/oatdump/Android.bp | |
@@ -35,6 +35,7 @@ art_cc_binary { | |
shared_libs: [ | |
"libart", | |
"libart-compiler", | |
+ "libart-dexlayout", | |
"libart-disassembler", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dexlayout/Android.bp b/dexlayout/Android.bp | |
index 33ba58f..f3b2a7e 100644 | |
--- a/dexlayout/Android.bp | |
+++ b/dexlayout/Android.bp | |
@@ -74,6 +74,13 @@ cc_defaults { | |
], | |
} | |
+cc_defaults { | |
+ name: "compact_dex_converter_defaults", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/dexlayout/Android.bp b/dexlayout/Android.bp | |
index 838510be37..34186d85d7 100644 | |
--- a/dexlayout/Android.bp | |
+++ b/dexlayout/Android.bp | |
@@ -132,6 +132,30 @@ cc_defaults { | |
], | |
} | |
+cc_defaults { | |
+ name: "compact_dex_converter_defaults", |
OlderNewer