summaryrefslogtreecommitdiffstats
path: root/edid/Android.mk
diff options
context:
space:
mode:
authorAlberto Aguirre <a-aguirre@ti.com>2011-12-03 03:37:55 -0600
committerDaniel Levin <dendy@ti.com>2012-11-28 21:15:53 +0200
commit6044e3b1d20f88c39725e157e87ebef3c4d265d9 (patch)
tree2cf843d7db32cacc78987f628468a724b063fb18 /edid/Android.mk
parent7c0a22b0f0c91f655824f0b0a6a65b0566f39697 (diff)
downloadhardware_ti_omap4-6044e3b1d20f88c39725e157e87ebef3c4d265d9.zip
hardware_ti_omap4-6044e3b1d20f88c39725e157e87ebef3c4d265d9.tar.gz
hardware_ti_omap4-6044e3b1d20f88c39725e157e87ebef3c4d265d9.tar.bz2
Add EDID userspace parser
Currently only short video descriptors and s3d formats are parsed if available. Change-Id: I2ff6ea413f57b89b11df0d04d45a3735b36cd4da Signed-off-by: Alberto Aguirre <a-aguirre@ti.com>
Diffstat (limited to 'edid/Android.mk')
-rw-r--r--edid/Android.mk40
1 files changed, 40 insertions, 0 deletions
diff --git a/edid/Android.mk b/edid/Android.mk
new file mode 100644
index 0000000..ced97e9
--- /dev/null
+++ b/edid/Android.mk
@@ -0,0 +1,40 @@
+# Copyright (C) Texas Instruments - http://www.ti.com/
+#
+# 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.
+
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ lib/edid_parser.c
+
+LOCAL_MODULE_TAGS := optional
+LOCAL_MODULE := libedid
+
+include $(BUILD_SHARED_LIBRARY)
+
+# ====================
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= \
+ cmd/parse_hdmi_edid.c
+
+LOCAL_SHARED_LIBRARIES:= \
+ libutils \
+ libedid
+
+LOCAL_MODULE:= parse_hdmi_edid
+LOCAL_MODULE_TAGS:= optional
+
+include $(BUILD_EXECUTABLE)