[PATCH libdrm 03/10] proptest: Add Android support

Thierry Reding thierry.reding at gmail.com
Wed Dec 9 09:37:41 PST 2015


From: Thierry Reding <treding at nvidia.com>

Signed-off-by: Thierry Reding <treding at nvidia.com>
---
 tests/proptest/Android.mk       | 13 +++++++++++++
 tests/proptest/Makefile.am      |  6 ++++--
 tests/proptest/Makefile.sources |  2 ++
 3 files changed, 19 insertions(+), 2 deletions(-)
 create mode 100644 tests/proptest/Android.mk
 create mode 100644 tests/proptest/Makefile.sources

diff --git a/tests/proptest/Android.mk b/tests/proptest/Android.mk
new file mode 100644
index 000000000000..d0ab5c92775a
--- /dev/null
+++ b/tests/proptest/Android.mk
@@ -0,0 +1,13 @@
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+include $(LOCAL_PATH)/Makefile.sources
+
+LOCAL_SRC_FILES := $(PROPTEST_FILES)
+
+LOCAL_MODULE := proptest
+
+LOCAL_SHARED_LIBRARIES := libdrm
+LOCAL_STATIC_LIBRARIES := libdrm_util
+
+include $(BUILD_EXECUTABLE)
diff --git a/tests/proptest/Makefile.am b/tests/proptest/Makefile.am
index 142882066485..3fde46bececd 100644
--- a/tests/proptest/Makefile.am
+++ b/tests/proptest/Makefile.am
@@ -1,3 +1,5 @@
+include Makefile.sources
+
 AM_CFLAGS = \
 	$(WARN_CFLAGS)\
 	-I$(top_srcdir)/include/drm \
@@ -12,8 +14,8 @@ noinst_PROGRAMS = \
 	proptest
 endif
 
-proptest_SOURCES = \
-	proptest.c
+proptest_SOURCES = $(PROPTEST_FILES)
+
 proptest_LDADD = \
 	$(top_builddir)/libdrm.la \
 	$(top_builddir)/tests/util/libutil.la
diff --git a/tests/proptest/Makefile.sources b/tests/proptest/Makefile.sources
new file mode 100644
index 000000000000..446110d685d5
--- /dev/null
+++ b/tests/proptest/Makefile.sources
@@ -0,0 +1,2 @@
+PROPTEST_FILES := \
+	proptest.c
-- 
2.5.0



More information about the dri-devel mailing list