OSDN Git Service

eadfe2b1c8280c649ed7ad7f7a1eaf2e7c50bfac
[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         libEGL \
24         libGLESv2 \
25         libhardware \
26         liblog \
27         libsync \
28         libui \
29         libutils
30
31
32 LOCAL_C_INCLUDES := \
33         external/libdrm \
34         external/libdrm/include/drm \
35         system/core/include/utils \
36         system/core/libsync \
37         system/core/libsync/include \
38
39 LOCAL_SRC_FILES := \
40         compositor.cpp \
41         drmresources.cpp \
42         drmcomposition.cpp \
43         drmcompositor.cpp \
44         drmcompositorworker.cpp \
45         drmconnector.cpp \
46         drmcrtc.cpp \
47         drmdisplaycomposition.cpp \
48         drmdisplaycompositor.cpp \
49         drmencoder.cpp \
50         drmmode.cpp \
51         drmplane.cpp \
52         drmproperty.cpp \
53         gl_compositor.cpp \
54         glworker.cpp \
55         hwcomposer.cpp \
56         seperate_rects.cpp \
57         vsyncworker.cpp \
58         worker.cpp
59
60 ifeq ($(strip $(BOARD_DRM_HWCOMPOSER_BUFFER_IMPORTER)),nvidia-gralloc)
61 LOCAL_SRC_FILES += nvimporter.cpp
62 LOCAL_CPPFLAGS += -DUSE_NVIDIA_IMPORTER
63 else
64 LOCAL_C_INCLUDES += external/drm_gralloc
65 LOCAL_SRC_FILES += drmgenericimporter.cpp
66 LOCAL_CPPFLAGS += -DUSE_DRM_GENERIC_IMPORTER
67 endif
68
69 LOCAL_MODULE := hwcomposer.drm
70 LOCAL_MODULE_TAGS := optional
71 LOCAL_MODULE_RELATIVE_PATH := hw
72 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
73 LOCAL_MODULE_SUFFIX := $(TARGET_SHLIB_SUFFIX)
74 include $(BUILD_SHARED_LIBRARY)
75
76 endif