blob: 8c80143cd35ea77cc56aa6d96122f78d0520436a [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
Bob Badourf7cf3052021-02-12 17:13:45 -080013LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
14LOCAL_LICENSE_CONDITIONS := notice
The Android Open Source Project6ffae012009-03-18 17:39:43 -070015LOCAL_MODULE_TAGS := tests
16LOCAL_MODULE_CLASS := ETC
17LOCAL_MODULE_PATH := $(local_target_dir)
18LOCAL_SRC_FILES := $(LOCAL_MODULE)
Guang Zhuc2b27162010-06-02 11:18:14 -070019include $(BUILD_PREBUILT)
The Android Open Source Project6ffae012009-03-18 17:39:43 -070020
Guang Zhuc2b27162010-06-02 11:18:14 -070021include $(CLEAR_VARS)
Guang Zhuea7e48c2010-06-01 14:38:23 -070022LOCAL_MODULE := coverage_targets.xml
Bob Badourf7cf3052021-02-12 17:13:45 -080023LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
24LOCAL_LICENSE_CONDITIONS := notice
Guang Zhuea7e48c2010-06-01 14:38:23 -070025LOCAL_MODULE_TAGS := tests
26LOCAL_MODULE_CLASS := ETC
27LOCAL_MODULE_PATH := $(local_target_dir)
28LOCAL_SRC_FILES := $(LOCAL_MODULE)
The Android Open Source Project6ffae012009-03-18 17:39:43 -070029include $(BUILD_PREBUILT)