blob: 9d6afbc42cb3dc009f3e09ccb90bda639bd99296 [file] [log] [blame]
Iliyan Malchev202a77d2012-06-11 14:41:12 -07001# 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 Ahmed4d35af82012-07-11 23:43:42 -070014
15#gralloc module
Iliyan Malchev202a77d2012-06-11 14:41:12 -070016LOCAL_PATH := $(call my-dir)
Naseer Ahmed4d35af82012-07-11 23:43:42 -070017include $(LOCAL_PATH)/../common.mk
Iliyan Malchev202a77d2012-06-11 14:41:12 -070018include $(CLEAR_VARS)
Iliyan Malchev202a77d2012-06-11 14:41:12 -070019
Naseer Ahmed4d35af82012-07-11 23:43:42 -070020LOCAL_MODULE := gralloc.$(TARGET_BOARD_PLATFORM)
21LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
22LOCAL_MODULE_TAGS := optional
Naseer Ahmed74d978a2012-12-03 15:53:36 -050023LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes)
Naseer Ahmed4d35af82012-07-11 23:43:42 -070024LOCAL_SHARED_LIBRARIES := $(common_libs) libmemalloc libgenlock
25LOCAL_SHARED_LIBRARIES += libqdutils libGLESv1_CM
26LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"gralloc\"
Naseer Ahmed74d978a2012-12-03 15:53:36 -050027LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
Naseer Ahmed4d35af82012-07-11 23:43:42 -070028LOCAL_SRC_FILES := gpu.cpp gralloc.cpp framebuffer.cpp mapper.cpp
Iliyan Malchev202a77d2012-06-11 14:41:12 -070029include $(BUILD_SHARED_LIBRARY)
30
31#MemAlloc Library
32include $(CLEAR_VARS)
Naseer Ahmed74d978a2012-12-03 15:53:36 -050033LOCAL_MODULE := libmemalloc
34LOCAL_MODULE_TAGS := optional
35LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes)
36LOCAL_SHARED_LIBRARIES := $(common_libs) libgenlock
37LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"memalloc\"
38LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
39LOCAL_SRC_FILES := ionalloc.cpp alloc_controller.cpp
Iliyan Malchev202a77d2012-06-11 14:41:12 -070040include $(BUILD_SHARED_LIBRARY)