| Juan Ezquerro LLanes | bd134a7 | 2018-05-22 23:11:23 +0200 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_USE_AAPT2 := true |
| 5 | |
| 6 | LOCAL_MODULE := OmniLib |
| 7 | |
| 8 | LOCAL_SHARED_ANDROID_LIBRARIES := \ |
| 9 | android-support-annotations \ |
| 10 | android-support-v4 \ |
| Juan Ezquerro LLanes | bd134a7 | 2018-05-22 23:11:23 +0200 | [diff] [blame] | 11 | android-support-v7-preference \ |
| Juan Ezquerro LLanes | bd134a7 | 2018-05-22 23:11:23 +0200 | [diff] [blame] | 12 | android-support-v14-preference |
| 13 | |
| 14 | LOCAL_STATIC_JAVA_LIBRARY := legacy-android-test |
| 15 | |
| 16 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res |
| 17 | |
| 18 | LOCAL_JAR_EXCLUDE_FILES := none |
| 19 | |
| 20 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 21 | |
| Juan Ezquerro LLanes | 92d144f | 2018-05-23 21:19:00 +0200 | [diff] [blame] | 22 | include frameworks/base/packages/SettingsLib/common.mk |
| 23 | |
| Juan Ezquerro LLanes | bd134a7 | 2018-05-22 23:11:23 +0200 | [diff] [blame] | 24 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 25 | |
| 26 | # For the test package. |
| 27 | include $(call all-makefiles-under, $(LOCAL_PATH)) |
| 28 | |