58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := SystemUI-proto-tags
|
|
|
|
LOCAL_SRC_FILES := $(call all-proto-files-under,src) \
|
|
src/com/android/systemui/EventLogTags.logtags
|
|
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
|
LOCAL_PROTO_JAVA_OUTPUT_PARAMS := optional_field_style=accessors
|
|
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
# ------------------
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src) $(call all-Iaidl-files-under, src)
|
|
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := \
|
|
Keyguard \
|
|
android-support-v7-recyclerview \
|
|
android-support-v7-preference \
|
|
android-support-v7-appcompat \
|
|
android-support-v14-preference \
|
|
android-support-v17-leanback
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
framework-protos \
|
|
SystemUI-proto-tags
|
|
|
|
LOCAL_JAVA_LIBRARIES := telephony-common
|
|
LOCAL_JAVA_LIBRARIES += android.car
|
|
|
|
LOCAL_PACKAGE_NAME := SystemUI
|
|
LOCAL_CERTIFICATE := platform
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
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
|