summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Chang <vichang@google.com>2019-01-16 15:14:37 +0000
committerVictor Chang <vichang@google.com>2019-01-16 15:30:35 +0000
commit338617d5bde648d33e8120d8cffac8182872c772 (patch)
tree3c838e38f52224aab3360ea936b2d1ec2b0bc6e0
parente35f7027495597ca7eaa92fee8c028fd4efdf960 (diff)
Remove libpac as a JNI library in Android.mk
In fact, libpac is just a normal C++ library, not a JNI library. Remove it from LOCAL_JNI_SHARED_LIBRARIES. libjni_pacprocessor is the actual JNI library. libpac is still being used. libjni_pacprocessor, specified in frameworks/base/packages/services/PacProcessor/jni/Android.bp, depends on libpac as shared library. This change is needed to move libpac into the Runtime APEX. Bug: 121269980 Test: m droid Change-Id: I2a985acddbf2083d59fa28cfa76e6e4b80fa5b20
-rw-r--r--packages/services/PacProcessor/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/services/PacProcessor/Android.mk b/packages/services/PacProcessor/Android.mk
index 295b3d8bc979..be9ba4351056 100644
--- a/packages/services/PacProcessor/Android.mk
+++ b/packages/services/PacProcessor/Android.mk
@@ -26,6 +26,6 @@ LOCAL_PACKAGE_NAME := PacProcessor
LOCAL_PRIVATE_PLATFORM_APIS := true
LOCAL_CERTIFICATE := platform
-LOCAL_JNI_SHARED_LIBRARIES := libjni_pacprocessor libpac
+LOCAL_JNI_SHARED_LIBRARIES := libjni_pacprocessor
include $(BUILD_PACKAGE)