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.
14
15# Gralloc module
16LOCAL_PATH := $(call my-dir)
17include $(LOCAL_PATH)/../common.mk
18include $(CLEAR_VARS)
19
20# b/24171136 many files not compiling with clang/llvm yet
21LOCAL_CLANG := false
22
23LOCAL_MODULE                  := gralloc.$(TARGET_BOARD_PLATFORM)
24LOCAL_MODULE_RELATIVE_PATH    := hw
25LOCAL_MODULE_TAGS             := optional
26LOCAL_C_INCLUDES              := $(common_includes) $(kernel_includes)
27LOCAL_SHARED_LIBRARIES        := $(common_libs) libmemalloc libqdMetaData
28LOCAL_SHARED_LIBRARIES        += libqdutils libGLESv1_CM
29LOCAL_CFLAGS                  := $(common_flags) -DLOG_TAG=\"qdgralloc\"
30LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
31LOCAL_SRC_FILES               := gpu.cpp gralloc.cpp framebuffer.cpp mapper.cpp
32LOCAL_COPY_HEADERS_TO         := $(common_header_export_path)
33LOCAL_COPY_HEADERS            := gralloc_priv.h gr.h
34
35include $(BUILD_SHARED_LIBRARY)
36
37# MemAlloc Library
38include $(CLEAR_VARS)
39
40# b/24171136 many files not compiling with clang/llvm yet
41LOCAL_CLANG := false
42
43LOCAL_MODULE                  := libmemalloc
44LOCAL_MODULE_TAGS             := optional
45LOCAL_C_INCLUDES              := $(common_includes) $(kernel_includes)
46LOCAL_SHARED_LIBRARIES        := $(common_libs) libqdutils libdl
47LOCAL_CFLAGS                  := $(common_flags) -DLOG_TAG=\"qdmemalloc\"
48LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
49LOCAL_SRC_FILES               := ionalloc.cpp alloc_controller.cpp
50LOCAL_COPY_HEADERS            := alloc_controller.h memalloc.h
51
52include $(BUILD_SHARED_LIBRARY)
53