summaryrefslogtreecommitdiffstats
path: root/exynos4/hal/libhwconverter/Android.mk
diff options
context:
space:
mode:
authorcodeworkx <daniel.hillenbrand@codeworkx.de>2012-05-20 12:00:36 +0200
committercodeworkx <daniel.hillenbrand@codeworkx.de>2012-05-20 12:00:36 +0200
commit62f02ba4f4b7b561aa15408ebd9951600bdd71aa (patch)
treeac05dc645945a58edbc26e96df1a78ac16f27706 /exynos4/hal/libhwconverter/Android.mk
parente54debb12ecdf92d12acab00a261c0c5a6ef1d64 (diff)
downloadandroid_hardware_samsung-62f02ba4f4b7b561aa15408ebd9951600bdd71aa.tar.gz
android_hardware_samsung-62f02ba4f4b7b561aa15408ebd9951600bdd71aa.tar.bz2
android_hardware_samsung-62f02ba4f4b7b561aa15408ebd9951600bdd71aa.zip
exynos: reorganized and updated from insignal
Changes needed on exynos4210 devices: libcsc -> libseccscapi libswconverter -> remove TARGET_HAL_PATH := hardware/samsung/exynos4/hal TARGET_OMX_PATH := hardware/samsung/exynos/multimedia/openmax $(call inherit-product, hardware/samsung/exynos4210.mk) Change-Id: Ic59ef95b85ef37b3f38fb36cf6a364a5414685ee
Diffstat (limited to 'exynos4/hal/libhwconverter/Android.mk')
-rw-r--r--exynos4/hal/libhwconverter/Android.mk11
1 files changed, 8 insertions, 3 deletions
diff --git a/exynos4/hal/libhwconverter/Android.mk b/exynos4/hal/libhwconverter/Android.mk
index ecda03b..c1ded53 100644
--- a/exynos4/hal/libhwconverter/Android.mk
+++ b/exynos4/hal/libhwconverter/Android.mk
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+ifeq ($(filter-out exynos4,$(TARGET_BOARD_PLATFORM)),)
+
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
@@ -21,10 +23,13 @@ LOCAL_SHARED_LIBRARIES := liblog libutils libcutils libfimc
LOCAL_SRC_FILES := HardwareConverter.cpp
LOCAL_C_INCLUDES := \
- $(TOP)/$(BOARD_HAL_PATH)/include \
- $(TOP)/$(BOARD_HMM_PATH)/openmax/sec_omx/include/khronos \
- $(TOP)/$(BOARD_HMM_PATH)/openmax/sec_omx/include/sec
+ $(LOCAL_PATH)/../include \
+ $(TOP)/$(TARGET_HAL_PATH)/include \
+ $(TOP)/$(TARGET_OMX_PATH)/include/khronos \
+ $(TOP)/$(TARGET_OMX_PATH)/include/sec
LOCAL_MODULE_TAGS := eng
LOCAL_MODULE := libhwconverter
include $(BUILD_SHARED_LIBRARY)
+
+endif