summaryrefslogtreecommitdiff
path: root/librotator/Android.mk
diff options
context:
space:
mode:
authorJiho Chang <jiho04.chang@samsung.com>2012-03-24 06:05:23 +0900
committerDima Zavin <dima@android.com>2012-04-17 21:46:55 -0700
commit6ffdfe29dbc65fa53fb984e32b2acca24ef975a9 (patch)
tree205c9f796f50ce2a26bcfa152a093941ab0d1d39 /librotator/Android.mk
parent70007c4e11bff0d255cdaddb753fddf8508ce08a (diff)
downloadexynos5-6ffdfe29dbc65fa53fb984e32b2acca24ef975a9.tar.gz
hardware: exynos5: add initial librotator
Change-Id: I7a70e8d412417808a254d2162df346b04f8c4820 Signed-off-by: Jiho Chang <jiho04.chang@samsung.com>
Diffstat (limited to 'librotator/Android.mk')
-rw-r--r--librotator/Android.mk33
1 files changed, 33 insertions, 0 deletions
diff --git a/librotator/Android.mk b/librotator/Android.mk
new file mode 100644
index 0000000..5185235
--- /dev/null
+++ b/librotator/Android.mk
@@ -0,0 +1,33 @@
+# Copyright (C) 2008 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+ifeq ($(filter-out exynos5,$(TARGET_BOARD_PLATFORM)),)
+
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_PRELINK_MODULE := false
+LOCAL_SHARED_LIBRARIES := liblog libutils libcutils libexynosutils libexynosv4l2
+
+LOCAL_C_INCLUDES := \
+ $(LOCAL_PATH)/../include \
+ $(LOCAL_PATH)/../libexynosutils
+
+LOCAL_SRC_FILES := exynos_rotator.c
+
+LOCAL_MODULE_TAGS := eng
+LOCAL_MODULE := libexynosrotator
+include $(BUILD_SHARED_LIBRARY)
+
+endif