Tomasz Mikolajewski | e46d7f9 | 2016-03-15 17:41:31 +0900 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE_TAGS := tests |
| 5 | #LOCAL_SDK_VERSION := current |
| 6 | |
| 7 | LOCAL_SRC_FILES := $(call all-java-files-under, src) \ |
| 8 | |
| 9 | LOCAL_JAVA_LIBRARIES := android-support-v4 android.test.runner |
| 10 | LOCAL_STATIC_JAVA_LIBRARIES := mockito-target ub-uiautomator |
| 11 | |
| 12 | LOCAL_PACKAGE_NAME := DocumentsUIAppPerfTests |
| 13 | LOCAL_INSTRUMENTATION_FOR := DocumentsUI |
| 14 | |
| 15 | LOCAL_CERTIFICATE := platform |
| 16 | |
| 17 | include $(BUILD_PACKAGE) |
| 18 | |