cretin45 | 0328b87 | 2015-01-15 16:04:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 5 | |
| 6 | LOCAL_MODULE_TAGS := optional |
| 7 | |
cretin45 | 48ca24e | 2015-01-19 14:29:43 -0800 | [diff] [blame] | 8 | LOCAL_PACKAGE_NAME := CyanogenSetupWizard |
cretin45 | 0328b87 | 2015-01-15 16:04:44 -0800 | [diff] [blame] | 9 | LOCAL_CERTIFICATE := platform |
| 10 | LOCAL_PRIVILEGED_MODULE := true |
| 11 | |
| 12 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
| 13 | |
| 14 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 15 | android-support-v4 \ |
| 16 | android-support-v13 \ |
| 17 | play \ |
| 18 | libphonenumber |
| 19 | |
| 20 | LOCAL_JAVA_LIBRARIES += org.cyanogenmod.hardware |
| 21 | |
| 22 | # Include res dir from chips |
| 23 | google_play_dir := ../../../external/google/google_play_services/libproject/google-play-services_lib/res |
| 24 | res_dir := $(google_play_dir) res |
| 25 | |
| 26 | LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(res_dir)) |
| 27 | LOCAL_AAPT_FLAGS := --auto-add-overlay |
| 28 | LOCAL_AAPT_FLAGS += --extra-packages com.google.android.gms |
| 29 | |
| 30 | include $(BUILD_PACKAGE) |