The Android Open Source Project | 6ffae01 | 2009-03-18 17:39:43 -0700 | [diff] [blame^] | 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 | |
| 13 | LOCAL_MODULE := tests.xml |
| 14 | LOCAL_MODULE_TAGS := tests |
| 15 | LOCAL_MODULE_CLASS := ETC |
| 16 | LOCAL_MODULE_PATH := $(local_target_dir) |
| 17 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 18 | |
| 19 | include $(BUILD_PREBUILT) |