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 | |
| 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) |
| 21 | LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw |
| 22 | LOCAL_MODULE_TAGS := optional |
| 23 | LOCAL_C_INCLUDES := $(common_includes) |
| 24 | LOCAL_SHARED_LIBRARIES := $(common_libs) libmemalloc libgenlock |
| 25 | LOCAL_SHARED_LIBRARIES += libqdutils libGLESv1_CM |
| 26 | LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"gralloc\" |
| 27 | LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) |
| 28 | LOCAL_SRC_FILES := gpu.cpp gralloc.cpp framebuffer.cpp mapper.cpp |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 29 | include $(BUILD_SHARED_LIBRARY) |
| 30 | |
| 31 | #MemAlloc Library |
| 32 | include $(CLEAR_VARS) |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 33 | LOCAL_MODULE := libmemalloc |
| 34 | LOCAL_MODULE_TAGS := optional |
| 35 | LOCAL_C_INCLUDES := $(common_includes) |
| 36 | LOCAL_SHARED_LIBRARIES := $(common_libs) libgenlock |
| 37 | LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"memalloc\" |
| 38 | LOCAL_SRC_FILES := ionalloc.cpp alloc_controller.cpp |
Iliyan Malchev | 202a77d | 2012-06-11 14:41:12 -0700 | [diff] [blame] | 39 | include $(BUILD_SHARED_LIBRARY) |