OSDN Git Service

Merge "drm_hwcomposer: Wrap libdrm ops (minus modeset/flip) in C++ classes" into...
[android-x86/external-drm_hwcomposer.git] / Android.mk
1 # Copyright (C) 2015 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 ifeq ($(strip $(BOARD_USES_DRM_HWCOMPOSER)),true)
16
17 LOCAL_PATH := $(call my-dir)
18 include $(CLEAR_VARS)
19
20 # TODO: We should specify this in device.mk
21 BUFFER_IMPORTER := nvidia-gralloc
22
23 LOCAL_SHARED_LIBRARIES := \
24         libcutils \
25         libdrm \
26         libhardware \
27         liblog \
28         libsync \
29         libutils \
30
31 LOCAL_C_INCLUDES := \
32         external/libdrm \
33         external/libdrm/include/drm \
34         system/core/include/utils \
35         system/core/libsync \
36         system/core/libsync/include \
37
38 LOCAL_SRC_FILES := \
39         compositor.cpp \
40         drmresources.cpp \
41         drmconnector.cpp \
42         drmcrtc.cpp \
43         drmencoder.cpp \
44         drmmode.cpp \
45         drmplane.cpp \
46         drmproperty.cpp \
47         hwcomposer.cpp
48
49 ifeq ($(strip $(BUFFER_IMPORTER)),drm-gralloc)
50 LOCAL_C_INCLUDES += external/drm_gralloc
51 LOCAL_SRC_FILES += hwcomposer_import_drm_gralloc.cpp
52 endif
53 ifeq ($(strip $(BUFFER_IMPORTER)),nvidia-gralloc)
54 LOCAL_C_INCLUDES += external/drm_gralloc
55 LOCAL_SRC_FILES += hwcomposer_import_nv_gralloc.cpp
56 endif
57
58 LOCAL_MODULE := hwcomposer.drm
59 LOCAL_MODULE_TAGS := optional
60 LOCAL_MODULE_RELATIVE_PATH := hw
61 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
62 LOCAL_MODULE_SUFFIX := $(TARGET_SHLIB_SUFFIX)
63 include $(BUILD_SHARED_LIBRARY)
64
65 endif