be32078a40
Add support for updating the buffer geometry without any reallocation of memory. The buffer geometry is updated in the GraphicBuffer as well as in the buffer handle. Change-Id: I3fdb4f6a737277ab63fcbdb42e9c955ea7471760
18 lines
388 B
Makefile
18 lines
388 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
qcom_ui.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libutils \
|
|
libcutils \
|
|
libmemalloc \
|
|
libui
|
|
|
|
LOCAL_C_INCLUDES := $(TOP)/hardware/qcom/display/libgralloc \
|
|
LOCAL_CFLAGS := -DLOG_TAG=\"libQcomUI\"
|
|
LOCAL_MODULE := libQcomUI
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_SHARED_LIBRARY)
|