Use VrManager as a proxy to pass the controller data file descriptor from VrCore to VrWindowManager, since the latter is a purely native service with no Java visibility. This is intended to be replaced by moving the relevant parts of VrWindowManager into VrCore (b/36506799). Bug: 35619424 Test: manual on device Change-Id: I9545349893ed9b23de4ba8d3cb61c7d403ad0b97
46 lines
1.7 KiB
Makefile
46 lines
1.7 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) \
|
|
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 \
|
|
../../../native/services/vr/vr_window_manager/aidl/android/service/vr/IVrWindowManager.aidl \
|
|
|
|
LOCAL_AIDL_INCLUDES += \
|
|
system/netd/server/binder
|
|
|
|
LOCAL_JAVA_LIBRARIES := \
|
|
services.net \
|
|
android.hardware.light@2.0-java \
|
|
android.hardware.power@1.0-java \
|
|
android.hardware.tv.cec@1.0-java
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
tzdata_shared2 \
|
|
tzdata_update2 \
|
|
android.hidl.base@1.0-java-static \
|
|
android.hardware.biometrics.fingerprint@2.1-java-static \
|
|
android.hardware.vibrator@1.0-java-constants \
|
|
|
|
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)
|