libhwjpeg: resolve compilation errors
[GitHub/LineageOS/android_hardware_samsung_slsi_exynos.git] / libvpphdmi / Android.mk
1 # Copyright (C) 2008 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 LOCAL_PATH:= $(call my-dir)
16 include $(CLEAR_VARS)
17
18 LOCAL_PRELINK_MODULE := false
19 LOCAL_SHARED_LIBRARIES := liblog libutils libcutils libexynosutils \
20 libexynosv4l2 libsync libhwcutils libexynosdisplay libmpp
21
22 LOCAL_CFLAGS += -DLOG_TAG=\"hdmi\"
23
24 LOCAL_C_INCLUDES := \
25 $(LOCAL_PATH)/../include \
26 $(LOCAL_PATH)/../libhwcutils \
27 $(LOCAL_PATH)/../libvppdisplay \
28 $(LOCAL_PATH)/../libhwc \
29 $(TOP)/hardware/samsung_slsi/$(TARGET_BOARD_PLATFORM)/include \
30 $(TOP)/hardware/samsung_slsi/exynos/libexynosutils \
31 $(TOP)/hardware/samsung_slsi/$(TARGET_SOC)/include \
32 $(TOP)/hardware/samsung_slsi/$(TARGET_SOC)/libhwcmodule \
33 $(TOP)/hardware/samsung_slsi/$(TARGET_SOC)/libhwcutilsmodule \
34 $(TOP)/hardware/samsung_slsi/$(TARGET_SOC)/libdisplaymodule \
35 $(TOP)/hardware/samsung_slsi/exynos/libmpp \
36 $(TOP)/system/core/libsync/include
37
38 LOCAL_SRC_FILES := \
39 ExynosExternalDisplay.cpp dv_timings.c
40
41 include $(TOP)/hardware/samsung_slsi/$(TARGET_SOC)/libhdmimodule/Android.mk
42
43 LOCAL_MODULE := libhdmi
44
45 include $(TOP)/hardware/samsung_slsi/exynos/BoardConfigCFlags.mk
46 include $(BUILD_SHARED_LIBRARY)
47