We can now locate event log tag definitions in individual packages (and java constants for the tag numbers get auto-generated), so move all the tags used by the system server into the package.
20 lines
413 B
Makefile
20 lines
413 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
# the library
|
|
# ============================================================
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
$(call all-subdir-java-files) \
|
|
com/android/server/EventLogTags.logtags \
|
|
com/android/server/am/EventLogTags.logtags
|
|
|
|
LOCAL_MODULE:= services
|
|
|
|
LOCAL_JAVA_LIBRARIES := android.policy
|
|
|
|
include $(BUILD_JAVA_LIBRARY)
|
|
|
|
include $(BUILD_DROIDDOC)
|
|
|