fix earlier change for coverage_targets.xml

due to previous incorrect change to Makefile, test_defs.xml is missing.
this will add it back in.

Change-Id: I4bd57d24757662477409ba02d3f71122e8e75238
This commit is contained in:
Guang Zhu
2010-06-02 11:18:14 -07:00
parent 08a42a053f
commit c2b27167dd

View File

@@ -3,23 +3,23 @@
# #
# where to install the sample files on the device # where to install the sample files on the device
# #
local_target_dir := $(TARGET_OUT_DATA)/testinfo local_target_dir := $(TARGET_OUT_DATA)/testinfo
LOCAL_PATH := $(call my-dir) LOCAL_PATH := $(call my-dir)
######################## ########################
include $(CLEAR_VARS) include $(CLEAR_VARS)
LOCAL_MODULE := test_defs.xml LOCAL_MODULE := test_defs.xml
LOCAL_MODULE_TAGS := tests LOCAL_MODULE_TAGS := tests
LOCAL_MODULE_CLASS := ETC LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(local_target_dir) LOCAL_MODULE_PATH := $(local_target_dir)
LOCAL_SRC_FILES := $(LOCAL_MODULE) LOCAL_SRC_FILES := $(LOCAL_MODULE)
include $(BUILD_PREBUILT)
include $(CLEAR_VARS)
LOCAL_MODULE := coverage_targets.xml LOCAL_MODULE := coverage_targets.xml
LOCAL_MODULE_TAGS := tests LOCAL_MODULE_TAGS := tests
LOCAL_MODULE_CLASS := ETC LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_PATH := $(local_target_dir) LOCAL_MODULE_PATH := $(local_target_dir)
LOCAL_SRC_FILES := $(LOCAL_MODULE) LOCAL_SRC_FILES := $(LOCAL_MODULE)
include $(BUILD_PREBUILT) include $(BUILD_PREBUILT)