From fab8754054e3a87600bb490d1d0cc81b1eb092c9 Mon Sep 17 00:00:00 2001 From: Paul Duffin Date: Fri, 15 Feb 2019 11:39:12 +0000 Subject: [PATCH] Allow framework-atb-backward-compatibility to be added to bootclasspath Fixes a build failure that occurs when it is executed with REMOVE_ATB_FROM_BCP=true. Setting REMOVE_ATB_FROM_BCP=true adds the framework-atb-backward-compatibility target to the PRODUCT_BOOT_JARS path in place of android.test.base. That causes a problem because the build expects that everything on the PRODUCT_BOOT_JARS is installable. Bug: 73711752 Test: make droid and flash both with and without REMOVE_ATB_FROM_BCP=true Change-Id: I6595ff8dba42e6b85abbf6a6cad4d8970b5a91a0 --- Android.bp | 1 + 1 file changed, 1 insertion(+) diff --git a/Android.bp b/Android.bp index d58b48399a8f3..79734df6a9b92 100644 --- a/Android.bp +++ b/Android.bp @@ -768,6 +768,7 @@ java_library_host { // specified on the build command line. java_library { name: "framework-atb-backward-compatibility", + installable: true, srcs: [ "core/java/android/content/pm/AndroidTestBaseUpdater.java", ],