2013-09-06 10:43:45 -07:00
|
|
|
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
2015-10-23 11:46:01 -07:00
|
|
|
#LOCAL_SDK_VERSION := current
|
2013-09-06 10:43:45 -07:00
|
|
|
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
|
|
|
|
LOCAL_JAVA_LIBRARIES := android.test.runner
|
2015-10-26 17:03:55 -07:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4 mockito-target ub-uiautomator
|
2013-09-06 10:43:45 -07:00
|
|
|
|
|
|
|
LOCAL_PACKAGE_NAME := DocumentsUITests
|
|
|
|
LOCAL_INSTRUMENTATION_FOR := DocumentsUI
|
|
|
|
|
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
|
|
|
|
include $(BUILD_PACKAGE)
|
2015-10-23 11:46:01 -07:00
|
|
|
|