blob: 6144db7bf73a75d93c47318f0539d9d09ff15c1f [file] [log] [blame]
Jeff Sharkeyef946f32013-02-19 17:29:18 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := optional
5
6LOCAL_SRC_FILES := $(call all-subdir-java-files)
7
Jeff Sharkeyde15e792013-02-23 15:42:10 -08008LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4
9
Jeff Sharkey1ab44cc2013-04-05 17:13:05 -070010# If this is an unbundled build (to install seprately) then include
11# the libraries in the APK, otherwise just put them in /system/lib and
12# leave them out of the APK
13ifneq (,$(TARGET_BUILD_APPS))
14 LOCAL_JNI_SHARED_LIBRARIES := libjni_terminal
15else
16 LOCAL_REQUIRED_MODULES := libjni_terminal
17endif
Jeff Sharkeyef946f32013-02-19 17:29:18 -080018
Jeff Sharkey2c9fd652013-03-28 15:32:49 -070019# TODO: enable proguard once development has settled down
20#LOCAL_PROGUARD_FLAG_FILES := proguard.flags
21LOCAL_PROGUARD_ENABLED := disabled
Michael Wrightfa50ddd2013-02-22 20:56:07 -080022
Jeff Sharkeyef946f32013-02-19 17:29:18 -080023LOCAL_PACKAGE_NAME := Terminal
24
25include $(BUILD_PACKAGE)
26
27include $(call all-makefiles-under,$(LOCAL_PATH))