diff options
| -rw-r--r-- | build/boot/Android.bp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/build/boot/Android.bp b/build/boot/Android.bp index ca6ab24d05..42ed020d1a 100644 --- a/build/boot/Android.bp +++ b/build/boot/Android.bp @@ -24,6 +24,21 @@ package { bootclasspath_fragment { name: "art-bootclasspath-fragment", image_name: "art", + // Must match the ART_APEX_JARS set in build/make/core/envsetup.mk + contents: [ + "core-oj", + "core-libart", + "okhttp", + "bouncycastle", + "apache-xml", + ], + // Additional properties to append when coverage is enabled, i.e. when + // EMMA_INSTRUMENT_FRAMEWORK=true + coverage: { + contents: [ + "jacocoagent", + ], + }, visibility: [ "//art/build/apex", "//art/build/sdk", |