blob: 869b941d5f5c764de7c9faab53f67472216e6ec5 [file] [log] [blame]
Juan Ezquerro LLanesbd134a72018-05-22 23:11:23 +02001LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_USE_AAPT2 := true
5
6LOCAL_MODULE := OmniLib
7
8LOCAL_SHARED_ANDROID_LIBRARIES := \
9 android-support-annotations \
10 android-support-v4 \
Juan Ezquerro LLanesbd134a72018-05-22 23:11:23 +020011 android-support-v7-preference \
Juan Ezquerro LLanesbd134a72018-05-22 23:11:23 +020012 android-support-v14-preference
13
14LOCAL_STATIC_JAVA_LIBRARY := legacy-android-test
15
16LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
17
18LOCAL_JAR_EXCLUDE_FILES := none
19
20LOCAL_SRC_FILES := $(call all-java-files-under, src)
21
Juan Ezquerro LLanes92d144f2018-05-23 21:19:00 +020022include frameworks/base/packages/SettingsLib/common.mk
23
Juan Ezquerro LLanesbd134a72018-05-22 23:11:23 +020024include $(BUILD_STATIC_JAVA_LIBRARY)
25
26# For the test package.
27include $(call all-makefiles-under, $(LOCAL_PATH))
28