blob: c6e6b0ee5dd7f6542301204d3f3b682e2798a697 [file] [log] [blame]
codeworkxf1be2fe2012-03-24 17:38:29 +01001# 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
codeworkx62f02ba2012-05-20 12:00:36 +020015ifeq ($(filter-out exynos4,$(TARGET_BOARD_PLATFORM)),)
16
codeworkxf1be2fe2012-03-24 17:38:29 +010017LOCAL_PATH:= $(call my-dir)
18include $(CLEAR_VARS)
19
20LOCAL_PRELINK_MODULE := false
21LOCAL_SHARED_LIBRARIES := liblog libutils libcutils libfimc
22
23LOCAL_SRC_FILES := HardwareConverter.cpp
24
25LOCAL_C_INCLUDES := \
codeworkx62f02ba2012-05-20 12:00:36 +020026 $(LOCAL_PATH)/../include \
27 $(TOP)/$(TARGET_HAL_PATH)/include \
28 $(TOP)/$(TARGET_OMX_PATH)/include/khronos \
29 $(TOP)/$(TARGET_OMX_PATH)/include/sec
codeworkxf1be2fe2012-03-24 17:38:29 +010030
codeworkxf1be2fe2012-03-24 17:38:29 +010031LOCAL_MODULE := libhwconverter
Daniel Hillenbrand0fdadca2012-07-22 15:45:33 +020032
codeworkxf1be2fe2012-03-24 17:38:29 +010033include $(BUILD_SHARED_LIBRARY)
codeworkx62f02ba2012-05-20 12:00:36 +020034
35endif