hdmi_in_test: Add support for Android
Add support for Android make file.
Fixed compiler warnings.
Change-Id: I7781cc16dc35f9b3498d02a3f60763cdd59b7e6f
diff --git a/hdmi_in_test/Android.mk b/hdmi_in_test/Android.mk
new file mode 100644
index 0000000..0530372
--- /dev/null
+++ b/hdmi_in_test/Android.mk
@@ -0,0 +1,15 @@
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := hdmi_in_test
+LOCAL_MODULE_TAGS := optional
+LOCAL_MODULE_OWNER := qti
+
+LOCAL_SRC_FILES := \
+ src/hdmi_in_event_test.c
+
+LOCAL_SHARED_LIBRARIES := \
+ liblog \
+ libcutils
+
+include $(BUILD_EXECUTABLE)