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
| import android.graphics.PointF; | |
| import android.view.animation.Interpolator; | |
| /** | |
| * From https://github.com/codesoup/android-cubic-bezier-interpolator | |
| * Derived from: https://github.com/rdallasgray/bez | |
| */ | |
| public class CubicBezierInterpolator implements Interpolator { |