Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 1 | # Copyright (C) 2008 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 14 | |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 15 | # Gralloc module |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 16 | LOCAL_PATH := $(call my-dir) |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 17 | include $(LOCAL_PATH)/../common.mk |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 18 | include $(CLEAR_VARS) |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 19 | |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 20 | LOCAL_MODULE := gralloc.$(TARGET_BOARD_PLATFORM) |
Naseer Ahmed | 9c7ab94 | 2017-02-22 18:28:25 -0500 | [diff] [blame] | 21 | |
| 22 | ifneq ($(TARGET_IS_HEADLESS), true) |
| 23 | LOCAL_MODULE_PATH_32 := $(TARGET_OUT_VENDOR)/lib |
| 24 | LOCAL_MODULE_PATH_64 := $(TARGET_OUT_VENDOR)/lib64 |
| 25 | endif |
| 26 | |
Ajay Dudani | 96719e7 | 2014-05-10 15:44:59 -0700 | [diff] [blame] | 27 | LOCAL_MODULE_RELATIVE_PATH := hw |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 28 | LOCAL_MODULE_TAGS := optional |
Naseer Ahmed | 74d978a | 2012-12-03 15:53:36 -0500 | [diff] [blame] | 29 | LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes) |
Pullakavi Srinivas | c644266 | 2016-06-22 02:20:07 +0530 | [diff] [blame] | 30 | LOCAL_SHARED_LIBRARIES := $(common_libs) libmemalloc libqdMetaData libqdutils |
| 31 | ifneq ($(TARGET_IS_HEADLESS), true) |
Saurabh Shah | 7d476ed | 2016-06-27 16:40:58 -0700 | [diff] [blame] | 32 | LOCAL_SHARED_LIBRARIES += libGLESv1_CM libdrmutils |
Pullakavi Srinivas | c644266 | 2016-06-22 02:20:07 +0530 | [diff] [blame] | 33 | endif |
Naseer Ahmed | b8ecfbf | 2015-11-02 20:34:29 -0500 | [diff] [blame] | 34 | LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdgralloc\" -Wno-sign-conversion |
Naseer Ahmed | 74d978a | 2012-12-03 15:53:36 -0500 | [diff] [blame] | 35 | LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps) |
Naseer Ahmed | c55d60a | 2013-07-11 17:42:26 -0400 | [diff] [blame] | 36 | LOCAL_SRC_FILES := gpu.cpp gralloc.cpp framebuffer.cpp mapper.cpp |
| 37 | LOCAL_COPY_HEADERS_TO := $(common_header_export_path) |
Rajavenu Kyatham | f7f74a4 | 2016-08-26 17:34:19 +0530 | [diff] [blame] | 38 | LOCAL_COPY_HEADERS := gralloc_priv.h gr.h adreno_utils.h |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 39 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 40 | include $(BUILD_SHARED_LIBRARY) |
| 41 | |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 42 | # MemAlloc Library |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 43 | include $(CLEAR_VARS) |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 44 | |
Naseer Ahmed | 74d978a | 2012-12-03 15:53:36 -0500 | [diff] [blame] | 45 | LOCAL_MODULE := libmemalloc |
Naseer Ahmed | 9c7ab94 | 2017-02-22 18:28:25 -0500 | [diff] [blame] | 46 | |
| 47 | ifneq ($(TARGET_IS_HEADLESS), true) |
| 48 | LOCAL_MODULE_PATH_32 := $(TARGET_OUT_VENDOR)/lib |
| 49 | LOCAL_MODULE_PATH_64 := $(TARGET_OUT_VENDOR)/lib64 |
| 50 | endif |
| 51 | |
Naseer Ahmed | 74d978a | 2012-12-03 15:53:36 -0500 | [diff] [blame] | 52 | LOCAL_MODULE_TAGS := optional |
| 53 | LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes) |
Naseer Ahmed | a163b73 | 2013-02-12 14:53:33 -0500 | [diff] [blame] | 54 | LOCAL_SHARED_LIBRARIES := $(common_libs) libqdutils libdl |
Naseer Ahmed | b8ecfbf | 2015-11-02 20:34:29 -0500 | [diff] [blame] | 55 | LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdmemalloc\" -Wno-sign-conversion |
Naseer Ahmed | 74d978a | 2012-12-03 15:53:36 -0500 | [diff] [blame] | 56 | LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps) |
Naseer Ahmed | c55d60a | 2013-07-11 17:42:26 -0400 | [diff] [blame] | 57 | LOCAL_SRC_FILES := ionalloc.cpp alloc_controller.cpp |
Ranjith Kagathi Ananda | ccafc68 | 2014-01-10 16:28:48 -0800 | [diff] [blame] | 58 | LOCAL_COPY_HEADERS := alloc_controller.h memalloc.h |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 59 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 60 | include $(BUILD_SHARED_LIBRARY) |