5e81f7cf67
Test: make -j SettingsLibTests Change-Id: I38fbd6af7eb5707d76fb930b4d685e30b26f45de Merged-In: I38fbd6af7eb5707d76fb930b4d685e30b26f45de (cherry picked from commit 41df109aca81726554d2aedf4ebea6c98f663273)
30 lines
693 B
Makefile
30 lines
693 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
jsr305
|
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := \
|
|
android-support-v4 \
|
|
android-support-v13 \
|
|
android-support-dynamic-animation \
|
|
android-support-v7-recyclerview \
|
|
android-support-v7-preference \
|
|
android-support-v7-appcompat \
|
|
android-support-v14-preference
|
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
|
|
|
|
LOCAL_PACKAGE_NAME := EasterEgg
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|