2014-01-28 15:34:50 -08:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_MODULE := services.core
|
|
|
|
|
2016-04-12 23:29:19 +09:00
|
|
|
LOCAL_AIDL_INCLUDES := system/netd/server/binder
|
|
|
|
|
2014-01-28 15:34:50 -08:00
|
|
|
LOCAL_SRC_FILES += \
|
|
|
|
$(call all-java-files-under,java) \
|
|
|
|
java/com/android/server/EventLogTags.logtags \
|
2016-02-02 17:21:21 +09:00
|
|
|
java/com/android/server/am/EventLogTags.logtags \
|
2016-04-12 23:29:19 +09:00
|
|
|
../../../../system/netd/server/binder/android/net/INetd.aidl \
|
2016-09-15 17:07:08 +09:00
|
|
|
../../../../system/netd/server/binder/android/net/metrics/INetdEventListener.aidl \
|
2016-12-05 11:19:28 -07:00
|
|
|
../../../native/cmds/installd/binder/android/os/IInstalld.aidl \
|
2017-03-22 11:40:38 -04:00
|
|
|
../../../native/services/vr/vr_window_manager/aidl/android/service/vr/IVrWindowManager.aidl \
|
2014-01-28 15:34:50 -08:00
|
|
|
|
2016-03-30 18:52:40 +01:00
|
|
|
LOCAL_AIDL_INCLUDES += \
|
|
|
|
system/netd/server/binder
|
|
|
|
|
2016-10-04 17:25:52 -07:00
|
|
|
LOCAL_JAVA_LIBRARIES := \
|
|
|
|
services.net \
|
2016-11-04 05:25:52 +09:00
|
|
|
android.hardware.light@2.0-java \
|
2016-10-04 17:25:52 -07:00
|
|
|
android.hardware.power@1.0-java \
|
2017-03-21 12:52:16 -07:00
|
|
|
android.hardware.tv.cec@1.0-java \
|
|
|
|
android.hidl.manager@1.0-java
|
2016-10-04 17:25:52 -07:00
|
|
|
|
2017-02-22 18:29:47 +00:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
|
|
tzdata_shared2 \
|
|
|
|
tzdata_update2 \
|
2017-01-17 14:56:57 -08:00
|
|
|
android.hidl.base@1.0-java-static \
|
|
|
|
android.hardware.biometrics.fingerprint@2.1-java-static \
|
2017-01-31 18:33:54 +00:00
|
|
|
android.hardware.vibrator@1.0-java-constants \
|
2014-01-28 15:34:50 -08:00
|
|
|
|
2016-01-28 19:56:20 -08:00
|
|
|
ifneq ($(INCREMENTAL_BUILDS),)
|
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
|
|
|
LOCAL_JACK_ENABLED := incremental
|
|
|
|
endif
|
|
|
|
|
2016-05-16 21:12:33 -07:00
|
|
|
LOCAL_JACK_FLAGS := \
|
|
|
|
-D jack.transformations.boost-locked-region-priority=true \
|
2017-03-28 00:43:31 +02:00
|
|
|
-D jack.transformations.boost-locked-region-priority.classname=com.android.server.am.ActivityManagerService,com.android.server.wm.WindowHashMap \
|
|
|
|
-D jack.transformations.boost-locked-region-priority.request=com.android.server.am.ActivityManagerService\#boostPriorityForLockedSection,com.android.server.wm.WindowManagerService\#boostPriorityForLockedSection \
|
|
|
|
-D jack.transformations.boost-locked-region-priority.reset=com.android.server.am.ActivityManagerService\#resetPriorityAfterLockedSection,com.android.server.wm.WindowManagerService\#resetPriorityAfterLockedSection
|
2016-05-16 21:12:33 -07:00
|
|
|
|
2014-01-28 15:34:50 -08:00
|
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|