380ecb81db
This change achieves a couple of things: - Let Keyguard be a library, so we can use it in SystemUI. - Introduce FLAG_KEYGUARD for windows and deprecate TYPE_KEYGUARD. Make all the TYPE_KEYGUARD behaviour dependant on the flag. - Implement a new KeyguardService in SystemUI, and bind that service from PhoneWindowManager. - Introduce BaseStatusBar.setKeyguardState and inflate KeyguardSimpleHostView there and use FLAG_KEYGUARD for the window, such that the status bar window essentially gets the Keyguard. Bug: 13635952 Change-Id: I059d80d8b9b9818a778ab685f4672ea2694def63
26 lines
653 B
Makefile
26 lines
653 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src) \
|
|
src/com/android/systemui/EventLogTags.logtags
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := Keyguard
|
|
LOCAL_JAVA_LIBRARIES := telephony-common
|
|
|
|
LOCAL_PACKAGE_NAME := SystemUI
|
|
LOCAL_CERTIFICATE := platform
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
LOCAL_RESOURCE_DIR := \
|
|
frameworks/base/packages/Keyguard/res \
|
|
$(LOCAL_PATH)/res
|
|
LOCAL_AAPT_FLAGS := --auto-add-overlay --extra-packages com.android.keyguard
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|