Also remove android-support-v4 dependency from test apk as there is no dependency over it in test apk. Change-Id: I0b459bb831dae6c03adfb4215a8f6a514fc72904 (cherry picked from commit 41f0641ee657215b3efa07c52698c0c4aa2ca1e4)
21 lines
482 B
Makefile
21 lines
482 B
Makefile
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
#LOCAL_SDK_VERSION := current
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_JAVA_LIBRARIES := android.test.runner
|
|
LOCAL_STATIC_JAVA_LIBRARIES := mockito-target ub-uiautomator espresso-core guava
|
|
LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt
|
|
|
|
LOCAL_PACKAGE_NAME := DocumentsUITests
|
|
LOCAL_INSTRUMENTATION_FOR := DocumentsUI
|
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|