blob: b6bde553bd6d10173de4e52408e22b95d0922138 [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
Brett Chabot2d85c0e2009-03-31 15:19:13 -070013LOCAL_MODULE := test_defs.xml
The Android Open Source Project6ffae012009-03-18 17:39:43 -070014LOCAL_MODULE_TAGS := tests
15LOCAL_MODULE_CLASS := ETC
16LOCAL_MODULE_PATH := $(local_target_dir)
17LOCAL_SRC_FILES := $(LOCAL_MODULE)
18
19include $(BUILD_PREBUILT)