summaryrefslogtreecommitdiff
path: root/openjdkjvm/Android.bp
diff options
context:
space:
mode:
author David Sehr <sehr@google.com> 2018-05-15 08:59:32 -0700
committer David Sehr <sehr@google.com> 2018-05-16 13:01:34 -0700
commit1f010164bea4714e9f653c52e8948c5d5305040b (patch)
treee69b2c3f4d2645d4097655f8914325945fe5dbbd /openjdkjvm/Android.bp
parenta7d37cf735f05cfc3a3585a5c44eb65d8a279874 (diff)
Move ArtDexFileLoader to libdexfile
Adds a dependency from libdexfile on libartbase, but allows the use of MemMap loaders, etc. Bug: 78652467 Test: make -j 40 checkbuild Change-Id: I15cf33893ca9192050762f8350a3cc1e39f88dc5
Diffstat (limited to 'openjdkjvm/Android.bp')
-rw-r--r--openjdkjvm/Android.bp10
1 files changed, 8 insertions, 2 deletions
diff --git a/openjdkjvm/Android.bp b/openjdkjvm/Android.bp
index a17899358c..907315e4e0 100644
--- a/openjdkjvm/Android.bp
+++ b/openjdkjvm/Android.bp
@@ -29,7 +29,10 @@ cc_defaults {
art_cc_library {
name: "libopenjdkjvm",
defaults: ["libopenjdkjvm_defaults"],
- shared_libs: ["libart"],
+ shared_libs: [
+ "libart",
+ "libartbase",
+ ],
}
art_cc_library {
@@ -38,5 +41,8 @@ art_cc_library {
"art_debug_defaults",
"libopenjdkjvm_defaults",
],
- shared_libs: ["libartd"],
+ shared_libs: [
+ "libartd",
+ "libartbased",
+ ],
}