c616c48fc5
This change is done to reduce the CPU utilization by SurfaceFlinger thread. This feature may be turned On/Off using a compile time flag (cherry picked from commit 9691e73556e5c0b66553aa55eb504b9ebb0fd400) Change-Id: I1cb5b5c8abef135bc520c6e39c6ccf236b2270c3 Conflicts: libqcomui/Android.mk
25 lines
605 B
Makefile
25 lines
605 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
qcom_ui.cpp
|
|
|
|
#ifeq ($(TARGET_BOARD_PLATFORM),qsd8k) # these are originally for 7x27a
|
|
# LOCAL_CFLAGS += -DCHECK_FOR_EXTERNAL_FORMAT
|
|
# LOCAL_CFLAGS += -DBYPASS_EGLIMAGE
|
|
#endif
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libutils \
|
|
libcutils \
|
|
libmemalloc \
|
|
libui \
|
|
libEGL
|
|
|
|
LOCAL_C_INCLUDES := $(TOP)/hardware/qcom/display/libgralloc \
|
|
LOCAL_CFLAGS := -DLOG_TAG=\"libQcomUI\"
|
|
LOCAL_CFLAGS += -DQCOM_HARDWARE
|
|
LOCAL_MODULE := libQcomUI
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_SHARED_LIBRARY)
|