1afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin# Copyright (C) 2008 The Android Open Source Project
2afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin#
3afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin# Licensed under the Apache License, Version 2.0 (the "License");
4afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin# you may not use this file except in compliance with the License.
5afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin# You may obtain a copy of the License at
6afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin#
7afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin#      http://www.apache.org/licenses/LICENSE-2.0
8afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin#
9afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin# Unless required by applicable law or agreed to in writing, software
10afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin# distributed under the License is distributed on an "AS IS" BASIS,
11afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin# See the License for the specific language governing permissions and
13afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin# limitations under the License.
14afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin
15afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung ShinLOCAL_PATH:= $(call my-dir)
16afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shininclude $(CLEAR_VARS)
17afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin
18afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung ShinLOCAL_C_INCLUDES := $(LOCAL_PATH) \
19faea27d54ed03f3133026675ea0261c5ea34e8dcDima Zavin	hardware/samsung_slsi/exynos5/include
20afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin
21afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung ShinLOCAL_SRC_FILES:= \
22afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin	ExynosJpegBase.cpp \
23afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin	ExynosJpegEncoder.cpp \
24afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin	ExynosJpegDecoder.cpp
25afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin
26afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung ShinLOCAL_SHARED_LIBRARIES :=    \
27afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin	libcutils	\
28faea27d54ed03f3133026675ea0261c5ea34e8dcDima Zavin	libion_exynos
29afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin
30afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung ShinLOCAL_MODULE:= libhwjpeg
31afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin
32faea27d54ed03f3133026675ea0261c5ea34e8dcDima ZavinLOCAL_MODULE_TAGS := optional
33afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shin
34afd46e5b53dc3c82f99105b7e7fd7908971f103bJiyoung Shininclude $(BUILD_SHARED_LIBRARY)
35