OSDN Git Service

drm_hwcomposer: Gate compilation on BOARD_USES_DRM_HWCOMPOSER
[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         libstlport \
29         libsync \
30         libutils \
31
32 LOCAL_C_INCLUDES := \
33         bionic \
34         external/libdrm \
35         external/libdrm/include/drm \
36         external/stlport/stlport \
37         system/core/include/utils \
38         system/core/libsync \
39         system/core/libsync/include \
40
41 LOCAL_SRC_FILES := hwcomposer.cpp compositor.cpp
42
43 ifeq ($(strip $(BUFFER_IMPORTER)),drm-gralloc)
44 LOCAL_C_INCLUDES += external/drm_gralloc
45 LOCAL_SRC_FILES += hwcomposer_import_drm_gralloc.cpp
46 endif
47 ifeq ($(strip $(BUFFER_IMPORTER)),nvidia-gralloc)
48 LOCAL_C_INCLUDES += external/drm_gralloc
49 LOCAL_SRC_FILES += hwcomposer_import_nv_gralloc.cpp
50 endif
51
52 LOCAL_MODULE := hwcomposer.drm
53 LOCAL_MODULE_TAGS := optional
54 LOCAL_MODULE_RELATIVE_PATH := hw
55 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
56 LOCAL_MODULE_SUFFIX := $(TARGET_SHLIB_SUFFIX)
57 include $(BUILD_SHARED_LIBRARY)
58
59 endif