summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Android.mk9
-rw-r--r--libs/plugin_core.jarbin0 -> 5057 bytes
-rw-r--r--tests/Android.mk10
3 files changed, 14 insertions, 5 deletions
diff --git a/Android.mk b/Android.mk
index 25593e642..b3b1c825f 100644
--- a/Android.mk
+++ b/Android.mk
@@ -16,6 +16,15 @@
LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+LOCAL_MODULE := libPluginCore
+LOCAL_MODULE_TAGS := optional
+LOCAL_MODULE_CLASS := JAVA_LIBRARIES
+LOCAL_SRC_FILES := libs/plugin_core.jar
+LOCAL_UNINSTALLABLE_MODULE := true
+LOCAL_SDK_VERSION := current
+include $(BUILD_PREBUILT)
+
#
# Build rule for plugin lib (needed to write a plugin).
#
diff --git a/libs/plugin_core.jar b/libs/plugin_core.jar
new file mode 100644
index 000000000..dd27f86fa
--- /dev/null
+++ b/libs/plugin_core.jar
Binary files differ
diff --git a/tests/Android.mk b/tests/Android.mk
index bf5cb2933..b9b703d02 100644
--- a/tests/Android.mk
+++ b/tests/Android.mk
@@ -28,12 +28,12 @@ LOCAL_STATIC_JAVA_LIBRARIES := \
ifneq (,$(wildcard frameworks/base))
else
LOCAL_STATIC_JAVA_LIBRARIES += libSharedSystemUI
-endif
-LOCAL_SRC_FILES := $(call all-java-files-under, tapl) \
- ../quickstep/src/com/android/quickstep/SwipeUpSetting.java \
- ../src/com/android/launcher3/util/SecureSettingsObserver.java \
- ../src/com/android/launcher3/TestProtocol.java \
+ LOCAL_SRC_FILES := $(call all-java-files-under, tapl) \
+ ../quickstep/src/com/android/quickstep/SwipeUpSetting.java \
+ ../src/com/android/launcher3/util/SecureSettingsObserver.java \
+ ../src/com/android/launcher3/TestProtocol.java
+endif
LOCAL_SDK_VERSION := current
LOCAL_MODULE := ub-launcher-aosp-tapl