• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_PROPRIETARY_MODULE      := true
26LOCAL_MODULE_TAGS             := optional
27LOCAL_C_INCLUDES              := $(common_includes) $(kernel_includes)
28LOCAL_SHARED_LIBRARIES        := $(common_libs) libmemalloc libqdMetaData
29LOCAL_SHARED_LIBRARIES        += libqdutils libGLESv1_CM
30LOCAL_CFLAGS                  := $(common_flags) -DLOG_TAG=\"qdgralloc\"
31LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
32LOCAL_SRC_FILES               := gpu.cpp gralloc.cpp framebuffer.cpp mapper.cpp
33LOCAL_COPY_HEADERS_TO         := $(common_header_export_path)
34LOCAL_COPY_HEADERS            := gralloc_priv.h gr.h
35
36LOCAL_STATIC_LIBRARIES        := libgralloc1-adapter
37LOCAL_SHARED_LIBRARIES        += libsync
38
39ifeq ($(TARGET_USES_GRALLOC1_ADAPTER), true)
40LOCAL_CFLAGS += -DADVERTISE_GRALLOC1
41endif
42
43include $(BUILD_SHARED_LIBRARY)
44
45# MemAlloc Library
46include $(CLEAR_VARS)
47
48# b/24171136 many files not compiling with clang/llvm yet
49LOCAL_CLANG := false
50
51LOCAL_MODULE                  := libmemalloc
52LOCAL_MODULE_TAGS             := optional
53LOCAL_C_INCLUDES              := $(common_includes) $(kernel_includes)
54LOCAL_SHARED_LIBRARIES        := $(common_libs) libqdutils libdl
55LOCAL_CFLAGS                  := $(common_flags) -DLOG_TAG=\"qdmemalloc\"
56LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
57LOCAL_SRC_FILES               := ionalloc.cpp alloc_controller.cpp
58LOCAL_COPY_HEADERS            := alloc_controller.h memalloc.h
59
60include $(BUILD_SHARED_LIBRARY)
61