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