Home | History | Annotate | Download | only in testrunner
      1 #
      2 # Install a list of test definitions on device
      3 #
      4 
      5 # where to install the sample files on the device
      6 #
      7 local_target_dir := $(TARGET_OUT_DATA)/testinfo
      8 LOCAL_PATH := $(call my-dir)
      9 
     10 ########################
     11 include $(CLEAR_VARS)
     12 LOCAL_MODULE := test_defs.xml
     13 LOCAL_MODULE_TAGS := tests
     14 LOCAL_MODULE_CLASS := ETC
     15 LOCAL_MODULE_PATH := $(local_target_dir)
     16 LOCAL_SRC_FILES := $(LOCAL_MODULE)
     17 include $(BUILD_PREBUILT)
     18 
     19 include $(CLEAR_VARS)
     20 LOCAL_MODULE := coverage_targets.xml
     21 LOCAL_MODULE_TAGS := tests
     22 LOCAL_MODULE_CLASS := ETC
     23 LOCAL_MODULE_PATH := $(local_target_dir)
     24 LOCAL_SRC_FILES := $(LOCAL_MODULE)
     25 include $(BUILD_PREBUILT)
     26