libhwjpeg: resolve compilation errors
[GitHub/LineageOS/android_hardware_samsung_slsi_exynos.git] / libhdmi_dummy / Android.mk
CommitLineData
5763fb39
T
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
15LOCAL_PATH:= $(call my-dir)
16include $(CLEAR_VARS)
17
18LOCAL_PRELINK_MODULE := false
0b0ee3f7 19LOCAL_SHARED_LIBRARIES := liblog libion libutils libcutils libexynosutils \
fe1f774b 20 libsync libexynosv4l2 libhwcutils libexynosdisplay \
5763fb39
T
21 libmpp
22
23LOCAL_C_INCLUDES := \
a4e95a20 24 $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include \
5763fb39
T
25 $(TOP)/hardware/samsung_slsi/$(TARGET_SOC)/include \
26 $(TOP)/hardware/samsung_slsi/$(TARGET_BOARD_PLATFORM)/include \
27 $(LOCAL_PATH)/../include \
28 $(LOCAL_PATH)/../libhwcutils \
29 $(LOCAL_PATH)/../libhwc \
30 $(TOP)/hardware/samsung_slsi/exynos/libexynosutils \
31 $(TOP)/hardware/samsung_slsi/$(TARGET_SOC)/libhwcmodule \
32 $(TOP)/hardware/samsung_slsi/$(TARGET_SOC)/libhwcutilsmodule \
33 $(TOP)/hardware/samsung_slsi/exynos/libmpp
34
35ifeq ($(BOARD_USES_VPP), true)
36LOCAL_C_INCLUDES += $(LOCAL_PATH)/../libvppdisplay \
37 $(TOP)/hardware/samsung_slsi/$(TARGET_SOC)/libdisplaymodule
38else
39LOCAL_C_INCLUDES += $(LOCAL_PATH)/../libdisplay
40endif
41
a4e95a20
EC
42LOCAL_ADDITIONAL_DEPENDENCIES := \
43 $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
44
5763fb39
T
45LOCAL_SRC_FILES := \
46 ExynosExternalDisplay.cpp
47
48include $(TOP)/hardware/samsung_slsi/$(TARGET_SOC)/libhdmimodule/Android.mk
49
5763fb39
T
50LOCAL_MODULE := libhdmi
51
52include $(TOP)/hardware/samsung_slsi/exynos/BoardConfigCFlags.mk
53include $(BUILD_SHARED_LIBRARY)
54