blob: 658e8e2946f6a834d98d2f29a0d085cf8de82a97 [file] [log] [blame]
Amith Yamasanie4e11302010-04-28 18:12:58 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4# We only want this apk build for tests.
5LOCAL_MODULE_TAGS := tests
6LOCAL_CERTIFICATE := shared
7
8LOCAL_JAVA_LIBRARIES := android.test.runner
9
Tadashi G. Takaoka5cb4eae2011-02-08 18:30:26 +090010# Do not compress dictionary files to mmap dict data runtime
11LOCAL_AAPT_FLAGS += -0 .dict
12# Do not compress test data file
13LOCAL_AAPT_FLAGS += -0 .txt
14
Amith Yamasanie4e11302010-04-28 18:12:58 -070015# Include all test java files.
16LOCAL_SRC_FILES := $(call all-java-files-under, src)
17
Ken Wakasadebd74c2010-07-20 16:20:15 +090018LOCAL_PACKAGE_NAME := LatinIMETests
Amith Yamasanie4e11302010-04-28 18:12:58 -070019
Ken Wakasadebd74c2010-07-20 16:20:15 +090020LOCAL_INSTRUMENTATION_FOR := LatinIME
Amith Yamasanie4e11302010-04-28 18:12:58 -070021
22include $(BUILD_PACKAGE)