Home | History | Annotate | Download | only in unit
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_MODULE_TAGS := tests
      5 
      6 
      7 # Include all test java files.
      8 LOCAL_SRC_FILES := $(call all-java-files-under, src)
      9 
     10 LOCAL_STATIC_JAVA_LIBRARIES := \
     11     android-support-test \
     12     mockito-target \
     13     tv-test-common \
     14 
     15 LOCAL_JAVA_LIBRARIES := \
     16     android.test.runner.stubs \
     17     android.test.base.stubs \
     18     android.test.mock.stubs \
     19 
     20 
     21 LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/../common/res
     22 
     23 LOCAL_PACKAGE_NAME := TVUnitTests
     24 
     25 LOCAL_INSTRUMENTATION_FOR := LiveTv
     26 
     27 LOCAL_SDK_VERSION := system_current
     28 
     29 LOCAL_PROGUARD_ENABLED := disabled
     30 include $(BUILD_PACKAGE)
     31 
     32