blob: 60e82d5c25e8cc6d0c5397ac9572b0f1992b8bb3 [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
10# Include all test java files.
11LOCAL_SRC_FILES := $(call all-java-files-under, src)
12
satok928ebfe2010-06-01 19:58:36 +090013LOCAL_PACKAGE_NAME := LatinIME2Tests
Amith Yamasanie4e11302010-04-28 18:12:58 -070014
Ken Wakasaa25324f2010-05-17 17:46:14 +090015LOCAL_INSTRUMENTATION_FOR := LatinIme2Google
Amith Yamasanie4e11302010-04-28 18:12:58 -070016
17include $(BUILD_PACKAGE)