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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 bin_PROGRAMS = va_egl
2
3 INCLUDES = -I$(top_srcdir) \
4 $(GLESv1_CM_CFLAGS)
5
6 TEST_LIBS = $(top_builddir)/va/$(libvabackendlib) $(top_builddir)/va/$(libvacore lib) $(top_builddir)/va/libva-egl.la -lpthread -lX11 -lEGL $(GLESv1_CM_LIBS)
7
8 va_egl_LDADD = $(TEST_LIBS)
9 va_egl_SOURCES = va_egl_x11.c
10
11 EXTRA_DIST =
12
13 valgrind: $(bin_PROGRAMS)
14 for a in $(bin_PROGRAMS); do \
15 valgrind --leak-check=full --show-reachable=yes .libs/$$a; \
16 done
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698