blob: b9119993cecfad14dfb3ceca1be0e91ac7f978c3 [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
Mathew Karimpanaldec98cc2012-11-12 22:27:02 -080015# 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)
Naseer Ahmed9c7ab942017-02-22 18:28:25 -050021
22ifneq ($(TARGET_IS_HEADLESS), true)
23LOCAL_MODULE_PATH_32 := $(TARGET_OUT_VENDOR)/lib
24LOCAL_MODULE_PATH_64 := $(TARGET_OUT_VENDOR)/lib64
25endif
26
Ajay Dudani96719e72014-05-10 15:44:59 -070027LOCAL_MODULE_RELATIVE_PATH := hw
Naseer Ahmed4d35af82012-07-11 23:43:42 -070028LOCAL_MODULE_TAGS := optional
Naseer Ahmed74d978a2012-12-03 15:53:36 -050029LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes)
Naseer Ahmed5ef09d92017-03-31 16:49:05 -040030LOCAL_HEADER_LIBRARIES := display_headers
Pullakavi Srinivasc6442662016-06-22 02:20:07 +053031LOCAL_SHARED_LIBRARIES := $(common_libs) libmemalloc libqdMetaData libqdutils
32ifneq ($(TARGET_IS_HEADLESS), true)
Saurabh Shah7d476ed2016-06-27 16:40:58 -070033LOCAL_SHARED_LIBRARIES += libGLESv1_CM libdrmutils
Pullakavi Srinivasc6442662016-06-22 02:20:07 +053034endif
Naseer Ahmedb8ecfbf2015-11-02 20:34:29 -050035LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdgralloc\" -Wno-sign-conversion
Naseer Ahmed74d978a2012-12-03 15:53:36 -050036LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
Naseer Ahmedc55d60a2013-07-11 17:42:26 -040037LOCAL_SRC_FILES := gpu.cpp gralloc.cpp framebuffer.cpp mapper.cpp
38LOCAL_COPY_HEADERS_TO := $(common_header_export_path)
Rajavenu Kyathamf7f74a42016-08-26 17:34:19 +053039LOCAL_COPY_HEADERS := gralloc_priv.h gr.h adreno_utils.h
Mathew Karimpanaldec98cc2012-11-12 22:27:02 -080040
Iliyan Malchev202a77d2012-06-11 14:41:12 -070041include $(BUILD_SHARED_LIBRARY)
42
Mathew Karimpanaldec98cc2012-11-12 22:27:02 -080043# MemAlloc Library
Iliyan Malchev202a77d2012-06-11 14:41:12 -070044include $(CLEAR_VARS)
Mathew Karimpanaldec98cc2012-11-12 22:27:02 -080045
Naseer Ahmed74d978a2012-12-03 15:53:36 -050046LOCAL_MODULE := libmemalloc
Naseer Ahmed9c7ab942017-02-22 18:28:25 -050047
48ifneq ($(TARGET_IS_HEADLESS), true)
49LOCAL_MODULE_PATH_32 := $(TARGET_OUT_VENDOR)/lib
50LOCAL_MODULE_PATH_64 := $(TARGET_OUT_VENDOR)/lib64
51endif
52
Naseer Ahmed74d978a2012-12-03 15:53:36 -050053LOCAL_MODULE_TAGS := optional
54LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes)
Naseer Ahmed5ef09d92017-03-31 16:49:05 -040055LOCAL_HEADER_LIBRARIES := display_headers
Naseer Ahmeda163b732013-02-12 14:53:33 -050056LOCAL_SHARED_LIBRARIES := $(common_libs) libqdutils libdl
Naseer Ahmedb8ecfbf2015-11-02 20:34:29 -050057LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdmemalloc\" -Wno-sign-conversion
Naseer Ahmed74d978a2012-12-03 15:53:36 -050058LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps) $(kernel_deps)
Naseer Ahmedc55d60a2013-07-11 17:42:26 -040059LOCAL_SRC_FILES := ionalloc.cpp alloc_controller.cpp
Ranjith Kagathi Anandaccafc682014-01-10 16:28:48 -080060LOCAL_COPY_HEADERS := alloc_controller.h memalloc.h
Mathew Karimpanaldec98cc2012-11-12 22:27:02 -080061
Iliyan Malchev202a77d2012-06-11 14:41:12 -070062include $(BUILD_SHARED_LIBRARY)