Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: third_party/libva/test/egl/Makefile.am

Issue 10375035: Add libva to chromium third_party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/libva/test/egl/Makefile.am
diff --git a/third_party/libva/test/egl/Makefile.am b/third_party/libva/test/egl/Makefile.am
new file mode 100644
index 0000000000000000000000000000000000000000..eadd26bb7241a80197e4d178f7b19807a71eb275
--- /dev/null
+++ b/third_party/libva/test/egl/Makefile.am
@@ -0,0 +1,16 @@
+bin_PROGRAMS = va_egl
+
+INCLUDES = -I$(top_srcdir) \
+ $(GLESv1_CM_CFLAGS)
+
+TEST_LIBS = $(top_builddir)/va/$(libvabackendlib) $(top_builddir)/va/$(libvacorelib) $(top_builddir)/va/libva-egl.la -lpthread -lX11 -lEGL $(GLESv1_CM_LIBS)
+
+va_egl_LDADD = $(TEST_LIBS)
+va_egl_SOURCES = va_egl_x11.c
+
+EXTRA_DIST =
+
+valgrind: $(bin_PROGRAMS)
+ for a in $(bin_PROGRAMS); do \
+ valgrind --leak-check=full --show-reachable=yes .libs/$$a; \
+ done

Powered by Google App Engine
This is Rietveld 408576698