mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
928ebfeaf8
- Add ring buffer - Count separator for auto suggestion - Add a test for ring buffer Change-Id: Id4a0aa00ceb1b055b8fc96c45e100d318cceb2ab
18 lines
387 B
Makefile
18 lines
387 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
# We only want this apk build for tests.
|
|
LOCAL_MODULE_TAGS := tests
|
|
LOCAL_CERTIFICATE := shared
|
|
|
|
LOCAL_JAVA_LIBRARIES := android.test.runner
|
|
|
|
# Include all test java files.
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_PACKAGE_NAME := LatinIME2Tests
|
|
|
|
LOCAL_INSTRUMENTATION_FOR := LatinIme2Google
|
|
|
|
include $(BUILD_PACKAGE)
|