OSDN Git Service

drm_hwcomposer: correct alpha channel output on gl framebuffers
[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 LOCAL_SHARED_LIBRARIES := \
21         libcutils \
22         libdrm \
23         libhardware \
24         liblog \
25         libsync \
26         libutils \
27
28 LOCAL_C_INCLUDES := \
29         external/libdrm \
30         external/libdrm/include/drm \
31         system/core/include/utils \
32         system/core/libsync \
33         system/core/libsync/include \
34
35 LOCAL_SRC_FILES := \
36         compositor.cpp \
37         drmresources.cpp \
38         drmcomposition.cpp \
39         drmcompositor.cpp \
40         drmcompositorworker.cpp \
41         drmconnector.cpp \
42         drmcrtc.cpp \
43         drmencoder.cpp \
44         drmmode.cpp \
45         drmplane.cpp \
46         drmproperty.cpp \
47         hwcomposer.cpp \
48         vsyncworker.cpp \
49         worker.cpp
50
51 ifeq ($(strip $(BOARD_DRM_HWCOMPOSER_BUFFER_IMPORTER)),nvidia-gralloc)
52 LOCAL_SRC_FILES += nvimporter.cpp
53 LOCAL_CPPFLAGS += -DUSE_NVIDIA_IMPORTER
54 else
55 LOCAL_C_INCLUDES += external/drm_gralloc
56 LOCAL_SRC_FILES += drmgenericimporter.cpp
57 LOCAL_CPPFLAGS += -DUSE_DRM_GENERIC_IMPORTER
58 endif
59
60 LOCAL_MODULE := hwcomposer.drm
61 LOCAL_MODULE_TAGS := optional
62 LOCAL_MODULE_RELATIVE_PATH := hw
63 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
64 LOCAL_MODULE_SUFFIX := $(TARGET_SHLIB_SUFFIX)
65 include $(BUILD_SHARED_LIBRARY)
66
67 endif