import exynos 7570 bsp
[GitHub/LineageOS/android_hardware_samsung_slsi_exynos.git] / libfimg5x / Android.mk
1 #
2 # Copyright 2012, Samsung Electronics Co. LTD
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 LOCAL_PATH:= $(call my-dir)
18 include $(CLEAR_VARS)
19
20 LOCAL_MODULE_TAGS := optional
21
22 LOCAL_SRC_FILES:= \
23 FimgApi.cpp \
24 FimgExynos5.cpp
25
26 LOCAL_C_INCLUDES += \
27 $(LOCAL_PATH)/../include \
28 hardware/samsung_slsi/$(TARGET_SOC)/include \
29 hardware/samsung_slsi/$(TARGET_BOARD_PLATFORM)/include
30
31 ifeq ($(filter 3.18, $(TARGET_LINUX_KERNEL_VERSION)), 3.18)
32 LOCAL_C_INCLUDES += $(TOP)/hardware/samsung_slsi/exynos/kernel-3.18-headers
33 endif
34
35 LOCAL_SHARED_LIBRARIES:= liblog libutils libbinder
36
37 LOCAL_MODULE:= libfimg
38
39 LOCAL_PRELINK_MODULE := false
40
41 include $(TOP)/hardware/samsung_slsi/exynos/BoardConfigCFlags.mk
42 include $(BUILD_SHARED_LIBRARY)