01c003a2eb
This switches to the updater2 version that uses a different bundle format and more thought given to versioning. The new version also inspects some of the files in the bundle to make sure they are valid. Test: Manual testing Bug: 31008728 Change-Id: I4e68ebd11dd86caa31ec520528c938f8c29eae4a
37 lines
1.4 KiB
Makefile
37 lines
1.4 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := services.core
|
|
|
|
LOCAL_AIDL_INCLUDES := system/netd/server/binder
|
|
|
|
LOCAL_SRC_FILES += \
|
|
$(call all-java-files-under,java) \
|
|
$(call all-proto-files-under, proto) \
|
|
java/com/android/server/EventLogTags.logtags \
|
|
java/com/android/server/am/EventLogTags.logtags \
|
|
../../../../system/netd/server/binder/android/net/INetd.aidl \
|
|
../../../../system/netd/server/binder/android/net/metrics/INetdEventListener.aidl \
|
|
../../../native/cmds/installd/binder/android/os/IInstalld.aidl \
|
|
|
|
LOCAL_AIDL_INCLUDES += \
|
|
system/netd/server/binder
|
|
|
|
LOCAL_JAVA_LIBRARIES := services.net telephony-common
|
|
LOCAL_STATIC_JAVA_LIBRARIES := tzdata_update2
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
|
|
|
ifneq ($(INCREMENTAL_BUILDS),)
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
|
LOCAL_JACK_ENABLED := incremental
|
|
endif
|
|
|
|
LOCAL_JACK_FLAGS := \
|
|
-D jack.transformations.boost-locked-region-priority=true \
|
|
-D jack.transformations.boost-locked-region-priority.classname=com.android.server.am.ActivityManagerService \
|
|
-D jack.transformations.boost-locked-region-priority.request=com.android.server.am.ActivityManagerService\#boostPriorityForLockedSection \
|
|
-D jack.transformations.boost-locked-region-priority.reset=com.android.server.am.ActivityManagerService\#resetPriorityAfterLockedSection
|
|
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|