diff options
author | 2024-11-06 09:29:58 -0800 | |
---|---|---|
committer | 2024-11-13 16:00:32 +0000 | |
commit | c6c8e76a6995acef2861f1a528610375bcaa3052 (patch) | |
tree | a73a3f748b3e6b0cea46cb9cf3581cf8df385db5 /dexdump/Android.bp | |
parent | c2ad788c311fc144582a07d4ae1654d39079511c (diff) |
Explicitly use implementations where necessary for modules in the same apex
The logic that magically determines whether to use stubs or
implementations for modules in the same apex is being removed
to simplify the Soong logic and make the build system easier to
understand. Explicitly use libdexfile#impl for modules in the
art apex that need the implementation APIs.
Bug: 372543712
Test: builds
Flag: EXEMPT refactor
Change-Id: I916d54fc558d6030bcb3b0586eb0f11a41a24c42
Diffstat (limited to 'dexdump/Android.bp')
-rw-r--r-- | dexdump/Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dexdump/Android.bp b/dexdump/Android.bp index 9b8989bf09..952bd27ac9 100644 --- a/dexdump/Android.bp +++ b/dexdump/Android.bp @@ -43,7 +43,7 @@ art_cc_binary { target: { android: { shared_libs: [ - "libdexfile", + "libdexfile#impl", "libartbase", "libbase", ], |