OSDN Git Service

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