Originally one field classification algorithm was used to classify every field. The change allows different category of fields to be classified by different field classification algorithms. Change-Id: I27205a4096774d6e0c0d56da5e0fd38dda995d8f Fixes: 118681526 Test: atest CtsAutoFillServiceTestCases Test: atest android.autofillservice.cts.FieldsClassificationTest
27 lines
608 B
Makefile
27 lines
608 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
# We only want this apk build for tests.
|
|
LOCAL_MODULE_TAGS := tests
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
android-support-test \
|
|
mockito-target-minus-junit4 \
|
|
espresso-core \
|
|
truth-prebuilt \
|
|
testables \
|
|
testng
|
|
|
|
# Include all test java files.
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_PACKAGE_NAME := ExtServicesUnitTests
|
|
LOCAL_PRIVATE_PLATFORM_APIS := true
|
|
|
|
LOCAL_INSTRUMENTATION_FOR := ExtServices
|
|
|
|
include $(BUILD_PACKAGE)
|