1# 2# Copyright (C) 2010 ARM Limited. All rights reserved. 3# 4# Copyright (C) 2008 The Android Open Source Project 5# 6# Licensed under the Apache License, Version 2.0 (the "License"); 7# you may not use this file except in compliance with the License. 8# You may obtain a copy of the License at 9# 10# http://www.apache.org/licenses/LICENSE-2.0 11# 12# Unless required by applicable law or agreed to in writing, software 13# distributed under the License is distributed on an "AS IS" BASIS, 14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15# See the License for the specific language governing permissions and 16# limitations under the License. 17 18 19LOCAL_PATH := $(call my-dir) 20 21# HAL module implemenation, not prelinked and stored in 22# hw/<OVERLAY_HARDWARE_MODULE_ID>.<ro.product.board>.so 23include $(CLEAR_VARS) 24LOCAL_PRELINK_MODULE := false 25 26LOCAL_MODULE_RELATIVE_PATH := hw 27LOCAL_VENDOR_MODULE := true 28 29MALI_DDK_TEST_PATH := hardware/arm/ 30 31LOCAL_MODULE := gralloc.hikey 32LOCAL_MODULE_RELATIVE_PATH := hw 33#LOCAL_MODULE_TAGS := optional 34 35# Mali-200/300/400MP DDK 36MALI_DDK_PATH := hardware/arm/mali 37#SHARED_MEM_LIBS := libUMP 38SHARED_MEM_LIBS := libion libhardware 39LOCAL_SHARED_LIBRARIES := liblog libsync libGLESv1_CM $(SHARED_MEM_LIBS) 40 41LOCAL_C_INCLUDES := system/core/include/ $(MALI_DDK_PATH)/include 42# Include the UMP header files 43LOCAL_C_INCLUDES += $(MALI_DDK_PATH)/src/ump/include 44 45LOCAL_CFLAGS := -DLOG_TAG=\"gralloc\" -DGRALLOC_32_BITS -DSTANDARD_LINUX_SCREEN -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION) 46 47LOCAL_SRC_FILES := \ 48 gralloc_module.cpp \ 49 alloc_device.cpp \ 50 framebuffer_device.cpp 51 52#LOCAL_CFLAGS+= -DMALI_VSYNC_EVENT_REPORT_ENABLE 53 54 55ifeq ($(HIKEY_USE_DRM_HWCOMPOSER), true) 56LOCAL_CFLAGS += -DDISABLE_FRAMEBUFFER_HAL 57endif 58 59include $(BUILD_SHARED_LIBRARY) 60