Home | History | Annotate | Download | only in tests
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_EMMA_COVERAGE_FILTER := +com.android.calendar.*
      5 
      6 # We only want this apk build for tests.
      7 LOCAL_MODULE_TAGS := tests
      8 
      9 LOCAL_STATIC_JAVA_LIBRARIES := android.test.runner
     10 
     11 # Include all test java files.
     12 LOCAL_SRC_FILES := $(call all-java-files-under, src)
     13 
     14 LOCAL_PACKAGE_NAME := CalendarTests
     15 
     16 LOCAL_INSTRUMENTATION_FOR := Calendar
     17 
     18 # unbundled
     19 LOCAL_STATIC_JAVA_LIBRARIES := android-common
     20 LOCAL_SDK_VERSION := 16
     21 
     22 include $(BUILD_PACKAGE)
     23