blob: 60c321ab2d738fb0859c2efcd6d3808ce7fe6ae2 [file] [log] [blame]
Amith Yamasani07b16032010-03-09 12:46:57 -08001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := optional
5
Tadashi G. Takaokad9008672010-08-25 18:12:18 +09006LOCAL_SRC_FILES := $(call all-java-files-under, src)
Amith Yamasani07b16032010-03-09 12:46:57 -08007
8LOCAL_PACKAGE_NAME := LatinIME
9
10LOCAL_CERTIFICATE := shared
11
12LOCAL_JNI_SHARED_LIBRARIES := libjni_latinime
13
14LOCAL_STATIC_JAVA_LIBRARIES := android-common
15
Ken Wakasa458249e2011-01-05 00:39:41 +090016# Do not compress dictionary files to mmap dict data runtime
17LOCAL_AAPT_FLAGS := -0 .dict
Amith Yamasani07b16032010-03-09 12:46:57 -080018
Ken Wakasaf182f822010-12-29 11:02:28 +090019# Include all the resources regardless of system supported locales
20LOCAL_AAPT_INCLUDE_ALL_RESOURCES := true
21
Amith Yamasani07b16032010-03-09 12:46:57 -080022LOCAL_SDK_VERSION := current
23
Ying Wangbdfcb662010-09-29 15:21:28 -070024LOCAL_PROGUARD_FLAG_FILES := proguard.flags
Amith Yamasani07b16032010-03-09 12:46:57 -080025
26include $(BUILD_PACKAGE)