Home | History | Annotate | Download | only in perf-tests
      1 LOCAL_PATH := $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_MODULE_TAGS := tests
      5 
      6 LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
      7 LOCAL_SRC_FILES := $(call all-java-files-under, src) \
      8     $(call all-java-files-under, ../tests/common/com/android/documentsui) \
      9     ../tests/functional/com/android/documentsui/ActivityTest.java
     10 
     11 LOCAL_JAVA_LIBRARIES := android.test.runner android.test.base android.test.mock
     12 LOCAL_STATIC_ANDROID_LIBRARIES := android-support-v4
     13 LOCAL_STATIC_JAVA_LIBRARIES := \
     14     mockito-target \
     15     ub-uiautomator \
     16     ub-janktesthelper \
     17     espresso-core
     18 
     19 LOCAL_USE_AAPT2 := true
     20 LOCAL_PACKAGE_NAME := DocumentsUIPerfTests
     21 LOCAL_PRIVATE_PLATFORM_APIS := true
     22 LOCAL_INSTRUMENTATION_FOR := DocumentsUI
     23 
     24 LOCAL_CERTIFICATE := platform
     25 
     26 include $(BUILD_PACKAGE)
     27 
     28