Home | History | Annotate | Download | only in tests
      1 
      2 LOCAL_PATH := $(call my-dir)
      3 include $(CLEAR_VARS)
      4 
      5 LOCAL_MODULE_TAGS := tests
      6 
      7 LOCAL_SRC_FILES := $(call all-java-files-under, src)
      8 
      9 LOCAL_JAVA_LIBRARIES := android.test.runner
     10 
     11 LOCAL_STATIC_JAVA_LIBRARIES := \
     12     android-support-test \
     13     mockito-target-minus-junit4 \
     14     ub-uiautomator \
     15     junit \
     16     legacy-android-test \
     17 
     18 LOCAL_PACKAGE_NAME := ShellTests
     19 LOCAL_COMPATIBILITY_SUITE := device-tests
     20 LOCAL_INSTRUMENTATION_FOR := Shell
     21 
     22 LOCAL_CERTIFICATE := platform
     23 
     24 include $(BUILD_PACKAGE)
     25