OSDN Git Service

HACK: add rotation defines
[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         autolock.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         drmeventlistener.cpp \
51         drmmode.cpp \
52         drmplane.cpp \
53         drmproperty.cpp \
54         glworker.cpp \
55         hwcomposer.cpp \
56         separate_rects.cpp \
57         virtualcompositorworker.cpp \
58         vsyncworker.cpp \
59         worker.cpp
60
61 ifeq ($(strip $(BOARD_DRM_HWCOMPOSER_BUFFER_IMPORTER)),nvidia-gralloc)
62 LOCAL_SRC_FILES += nvimporter.cpp
63 LOCAL_CPPFLAGS += -DUSE_NVIDIA_IMPORTER
64 else
65 LOCAL_C_INCLUDES += external/drm_gralloc
66 LOCAL_SRC_FILES += drmgenericimporter.cpp
67 LOCAL_CPPFLAGS += -DUSE_DRM_GENERIC_IMPORTER
68 endif
69
70 LOCAL_MODULE := hwcomposer.drm
71 LOCAL_MODULE_TAGS := optional
72 LOCAL_MODULE_RELATIVE_PATH := hw
73 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
74 LOCAL_MODULE_SUFFIX := $(TARGET_SHLIB_SUFFIX)
75 include $(BUILD_SHARED_LIBRARY)
76
77 endif