- Removing old broadcasts in favor of direct aidl interface between system and secondary users. Also moving user specific implementation into RecentsImpl, allowing Recents to handle proxying between users. Change-Id: I4bd5ef1d1ee47309b7c754f50a5e8b2e2aab988f
37 lines
1.0 KiB
Makefile
37 lines
1.0 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src) $(call all-proto-files-under,src) $(call all-Iaidl-files-under, src) \
|
|
src/com/android/systemui/EventLogTags.logtags
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := Keyguard
|
|
LOCAL_JAVA_LIBRARIES := telephony-common
|
|
|
|
LOCAL_PACKAGE_NAME := SystemUI
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
|
LOCAL_PROTO_JAVA_OUTPUT_PARAMS := optional_field_style=accessors
|
|
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
|
|
|
|
ifneq ($(SYSTEM_UI_INCREMENTAL_BUILDS),)
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
|
LOCAL_JACK_ENABLED := incremental
|
|
endif
|
|
|
|
include frameworks/base/packages/SettingsLib/common.mk
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
ifeq ($(EXCLUDE_SYSTEMUI_TESTS),)
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|
|
endif
|