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) |
Ajay Dudani | 96719e7 | 2014-05-10 15:44:59 -0700 | [diff] [blame] | 21 | LOCAL_MODULE_RELATIVE_PATH := hw |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 22 | LOCAL_MODULE_TAGS := optional |
Naseer Ahmed | 74d978a | 2012-12-03 15:53:36 -0500 | [diff] [blame] | 23 | LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes) |
Naseer Ahmed | 42e5dde | 2014-03-28 19:32:01 -0400 | [diff] [blame] | 24 | LOCAL_SHARED_LIBRARIES := $(common_libs) libmemalloc libqdMetaData |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 25 | LOCAL_SHARED_LIBRARIES += libqdutils libGLESv1_CM |
Naseer Ahmed | b8ecfbf | 2015-11-02 20:34:29 -0500 | [diff] [blame^] | 26 | LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdgralloc\" -Wno-sign-conversion |
| 27 | LOCAL_CLANG := true |
Naseer Ahmed | 74d978a | 2012-12-03 15:53:36 -0500 | [diff] [blame] | 28 | LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps) |
Naseer Ahmed | c55d60a | 2013-07-11 17:42:26 -0400 | [diff] [blame] | 29 | LOCAL_SRC_FILES := gpu.cpp gralloc.cpp framebuffer.cpp mapper.cpp |
| 30 | LOCAL_COPY_HEADERS_TO := $(common_header_export_path) |
Ranjith Kagathi Ananda | ccafc68 | 2014-01-10 16:28:48 -0800 | [diff] [blame] | 31 | LOCAL_COPY_HEADERS := gralloc_priv.h gr.h |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 32 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 33 | include $(BUILD_SHARED_LIBRARY) |
| 34 | |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 35 | # MemAlloc Library |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 36 | include $(CLEAR_VARS) |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 37 | |
Naseer Ahmed | 74d978a | 2012-12-03 15:53:36 -0500 | [diff] [blame] | 38 | LOCAL_MODULE := libmemalloc |
| 39 | LOCAL_MODULE_TAGS := optional |
| 40 | LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes) |
Naseer Ahmed | a163b73 | 2013-02-12 14:53:33 -0500 | [diff] [blame] | 41 | LOCAL_SHARED_LIBRARIES := $(common_libs) libqdutils libdl |
Naseer Ahmed | b8ecfbf | 2015-11-02 20:34:29 -0500 | [diff] [blame^] | 42 | LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdmemalloc\" -Wno-sign-conversion |
| 43 | LOCAL_CLANG := true |
Naseer Ahmed | 74d978a | 2012-12-03 15:53:36 -0500 | [diff] [blame] | 44 | LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps) |
Naseer Ahmed | c55d60a | 2013-07-11 17:42:26 -0400 | [diff] [blame] | 45 | LOCAL_SRC_FILES := ionalloc.cpp alloc_controller.cpp |
Ranjith Kagathi Ananda | ccafc68 | 2014-01-10 16:28:48 -0800 | [diff] [blame] | 46 | LOCAL_COPY_HEADERS := alloc_controller.h memalloc.h |
Mathew Karimpanal | dec98cc | 2012-11-12 22:27:02 -0800 | [diff] [blame] | 47 | |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 48 | include $(BUILD_SHARED_LIBRARY) |