construct event-log-tags via the new build mechanism

The build system now unions together all *.logtags files found in
LOCAL_SRC_FILES to construct /system/etc/event-log-tags.
This commit is contained in:
Doug Zongker 2009-11-25 13:03:06 -08:00
parent 7359c16a85
commit da077ee77a
2 changed files with 1 additions and 15 deletions

View File

@ -3,24 +3,10 @@
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= logcat.cpp
LOCAL_SRC_FILES:= logcat.cpp event.logtags
LOCAL_SHARED_LIBRARIES := liblog
LOCAL_MODULE:= logcat
include $(BUILD_EXECUTABLE)
########################
include $(CLEAR_VARS)
LOCAL_MODULE := event-log-tags
# This will install the file in /system/etc
#
LOCAL_MODULE_CLASS := ETC
LOCAL_SRC_FILES := $(LOCAL_MODULE)
LOCAL_PREBUILT_STRIP_COMMENTS := 1
include $(BUILD_PREBUILT)