2013-02-14 18:49:02 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2013 Paul Kocialkowski
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2012-07-25 02:32:16 +00:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
2013-02-14 18:49:02 +00:00
|
|
|
|
2012-07-25 02:32:16 +00:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := \
|
2013-02-14 18:49:02 +00:00
|
|
|
exynos_camera.c \
|
|
|
|
exynos_exif.c \
|
|
|
|
exynos_param.c \
|
|
|
|
exynos_v4l2.c
|
|
|
|
|
|
|
|
LOCAL_C_INCLUDES := \
|
2015-05-02 02:55:43 +00:00
|
|
|
system/media/camera/include \
|
2013-02-14 18:49:02 +00:00
|
|
|
hardware/samsung/exynos4/hal/include
|
2012-07-25 02:32:16 +00:00
|
|
|
|
2013-02-14 18:49:02 +00:00
|
|
|
LOCAL_SHARED_LIBRARIES := libutils libcutils liblog libcamera_client libhardware libs5pjpeg
|
|
|
|
LOCAL_PRELINK_MODULE := false
|
2012-07-25 02:32:16 +00:00
|
|
|
|
2013-02-14 18:49:02 +00:00
|
|
|
LOCAL_MODULE := camera.$(TARGET_BOOTLOADER_BOARD_NAME)
|
2012-07-25 02:32:16 +00:00
|
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|