272e6ecb11
Fix heap corruption in overlay clients, caused by missing compilation flags. All libraries using overlayLib.h should have flags used for conditional member declaration in overlay. CRs-fixed: 342959 (cherry picked from commit 42120b29500560ebedbd897e2e7adf7369eb0a21) Change-Id: Idf613861c4dc67e96ecadf7ce7e37472cb4e4daf
84 lines
2.6 KiB
Makefile
84 lines
2.6 KiB
Makefile
# Copyright (C) 2008 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Use this flag until pmem/ashmem is implemented in the new gralloc
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
# HAL module implemenation, not prelinked and stored in
|
|
# hw/<OVERLAY_HARDWARE_MODULE_ID>.<ro.product.board>.so
|
|
include $(CLEAR_VARS)
|
|
LOCAL_PRELINK_MODULE := false
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
|
|
LOCAL_SHARED_LIBRARIES := liblog libcutils libGLESv1_CM libutils libmemalloc libQcomUI
|
|
LOCAL_SHARED_LIBRARIES += libgenlock
|
|
|
|
LOCAL_C_INCLUDES += hardware/qcom/display/libgenlock
|
|
LOCAL_C_INCLUDES += hardware/qcom/display/libqcomui
|
|
LOCAL_SRC_FILES := framebuffer.cpp \
|
|
gpu.cpp \
|
|
gralloc.cpp \
|
|
mapper.cpp
|
|
|
|
LOCAL_MODULE := gralloc.$(TARGET_BOARD_PLATFORM)
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_CFLAGS:= -DLOG_TAG=\"$(TARGET_BOARD_PLATFORM).gralloc\" -DHOST -DDEBUG_CALC_FPS
|
|
|
|
ifeq ($(call is-board-platform,msm7x27),true)
|
|
LOCAL_CFLAGS += -DTARGET_MSM7x27
|
|
endif
|
|
|
|
ifeq ($(TARGET_QCOM_HDMI_OUT),true)
|
|
LOCAL_CFLAGS += -DHDMI_DUAL_DISPLAY
|
|
LOCAL_CFLAGS += -DQCOM_HDMI_OUT
|
|
LOCAL_C_INCLUDES += hardware/qcom/display/liboverlay
|
|
LOCAL_SHARED_LIBRARIES += liboverlay
|
|
endif
|
|
|
|
ifeq ($(TARGET_USES_SF_BYPASS),true)
|
|
LOCAL_CFLAGS += -DSF_BYPASS
|
|
endif
|
|
|
|
ifeq ($(TARGET_GRALLOC_USES_ASHMEM),true)
|
|
LOCAL_CFLAGS += -DUSE_ASHMEM
|
|
endif
|
|
ifeq ($(TARGET_USES_POST_PROCESSING),true)
|
|
LOCAL_CFLAGS += -DUSES_POST_PROCESSING
|
|
LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/pp/inc
|
|
endif
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
#MemAlloc Library
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
LOCAL_PRELINK_MODULE := false
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)
|
|
LOCAL_SHARED_LIBRARIES := liblog libcutils libutils
|
|
LOCAL_SRC_FILES := ashmemalloc.cpp \
|
|
pmemalloc.cpp \
|
|
pmem_bestfit_alloc.cpp \
|
|
alloc_controller.cpp
|
|
|
|
LOCAL_CFLAGS:= -DLOG_TAG=\"memalloc\" -DLOG_NDDEBUG=0
|
|
|
|
ifeq ($(TARGET_USES_ION),true)
|
|
LOCAL_CFLAGS += -DUSE_ION
|
|
LOCAL_SRC_FILES += ionalloc.cpp
|
|
endif
|
|
|
|
LOCAL_MODULE := libmemalloc
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_SHARED_LIBRARY)
|