blob: 93c092841a528843ef9b97fc0e2badc38f68e655 [file] [log] [blame]
The Android Open Source Project6ffae012009-03-18 17:39:43 -07001#
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)
12
13LOCAL_MODULE := tests.xml
14LOCAL_MODULE_TAGS := tests
15LOCAL_MODULE_CLASS := ETC
16LOCAL_MODULE_PATH := $(local_target_dir)
17LOCAL_SRC_FILES := $(LOCAL_MODULE)
18
19include $(BUILD_PREBUILT)