blob: d0f773db852d2f90bfae12c9c749179f17f0d4c8 [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
Guang Zhuc2b27162010-06-02 11:18:14 -07006#
The Android Open Source Project6ffae012009-03-18 17:39:43 -07007local_target_dir := $(TARGET_OUT_DATA)/testinfo
8LOCAL_PATH := $(call my-dir)
9
10########################
11include $(CLEAR_VARS)
Brett Chabota3a8aeb2009-03-31 14:51:13 -070012LOCAL_MODULE := test_defs.xml
The Android Open Source Project6ffae012009-03-18 17:39:43 -070013LOCAL_MODULE_TAGS := tests
14LOCAL_MODULE_CLASS := ETC
15LOCAL_MODULE_PATH := $(local_target_dir)
16LOCAL_SRC_FILES := $(LOCAL_MODULE)
Guang Zhuc2b27162010-06-02 11:18:14 -070017include $(BUILD_PREBUILT)
The Android Open Source Project6ffae012009-03-18 17:39:43 -070018
Guang Zhuc2b27162010-06-02 11:18:14 -070019include $(CLEAR_VARS)
Guang Zhuea7e48c2010-06-01 14:38:23 -070020LOCAL_MODULE := coverage_targets.xml
21LOCAL_MODULE_TAGS := tests
22LOCAL_MODULE_CLASS := ETC
23LOCAL_MODULE_PATH := $(local_target_dir)
24LOCAL_SRC_FILES := $(LOCAL_MODULE)
The Android Open Source Project6ffae012009-03-18 17:39:43 -070025include $(BUILD_PREBUILT)