OSDN Git Service

drm_hwcomposer: Use queue buffer for pending sets
[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
16 LOCAL_PATH := $(call my-dir)
17 include $(CLEAR_VARS)
18
19 # TODO: We should specify this in device.mk
20 BUFFER_IMPORTER := gralloc
21
22 LOCAL_SHARED_LIBRARIES := \
23         libdrm \
24         libhardware \
25         liblog \
26         libstlport \
27         libsync \
28         libutils \
29
30 LOCAL_C_INCLUDES := \
31         bionic \
32         external/libdrm \
33         external/libdrm/include/drm \
34         external/stlport/stlport \
35         system/core/include/utils \
36         system/core/libsync/include \
37
38 LOCAL_CFLAGS :=
39 LOCAL_SRC_FILES := hwcomposer.cpp
40
41 ifeq ($(strip $(BUFFER_IMPORTER)),gralloc)
42 LOCAL_C_INCLUDES += external/drm_gralloc
43 LOCAL_SRC_FILES += hwcomposer_import_drm_gralloc.cpp
44 endif
45
46 LOCAL_MODULE := hwcomposer.drm
47 LOCAL_MODULE_TAGS := optional
48 LOCAL_MODULE_RELATIVE_PATH := hw
49 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
50 LOCAL_MODULE_SUFFIX := $(TARGET_SHLIB_SUFFIX)
51 include $(BUILD_SHARED_LIBRARY)