summaryrefslogtreecommitdiff
Diffstat
-rwxr-xr-xAndroid.mk18
-rwxr-xr-xaml_screen.cpp188
-rwxr-xr-xtest/Android.mk16
-rwxr-xr-xtest/screen_source_test.cpp91
-rwxr-xr-xv4l2_vdin.cpp211
-rwxr-xr-xv4l2_vdin.h69
6 files changed, 593 insertions, 0 deletions
diff --git a/test/Android.mk b/test/Android.mk
new file mode 100755
index 0000000..a17fdd5
--- a/dev/null
+++ b/test/Android.mk
@@ -0,0 +1,16 @@
+# Build the unit tests.
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := screen_source_test
+
+LOCAL_MODULE_TAGS := tests
+
+LOCAL_SRC_FILES := screen_source_test.cpp
+
+LOCAL_SHARED_LIBRARIES := libutils\
+ libhardware
+
+#LOCAL_C_INCLUDES :=
+
+include $(BUILD_EXECUTABLE) \ No newline at end of file