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

Unified Diff: third_party/libxslt/python/tests/Makefile.am

Issue 1193533007: Upgrade to libxml 2.9.2 and libxslt 1.1.28 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove suppressions, have landed in blink now Created 5 years, 6 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/libxslt/python/tests/Makefile.am
diff --git a/third_party/libxslt/python/tests/Makefile.am b/third_party/libxslt/python/tests/Makefile.am
new file mode 100644
index 0000000000000000000000000000000000000000..f757774fd66b9ecbbb3556820de6e3d86354e98c
--- /dev/null
+++ b/third_party/libxslt/python/tests/Makefile.am
@@ -0,0 +1,34 @@
+EXAMPLE_DIR = $(datadir)/doc/libxslt-python-$(LIBXSLT_VERSION)/examples
+
+TESTSPY= \
+ basic.py \
+ exslt.py \
+ extelem.py \
+ extfunc.py
+
+XMLS= \
+ test.xml \
+ test.xsl
+
+EXTRAS= \
+ pyxsltproc.py
+
+EXTRA_DIST = $(TESTSPY) $(XMLS) $(EXTRAS)
+
+CLEANFILES = *.pyc core
+
+if WITH_PYTHON
+tests: $(TESTSPY)
+ -@(PYTHONPATH="`pwd`/..:`pwd`/../.libs:$(srcdir)/.."; \
+ if test "x$(LIBXML_SRC)" != "x" ; then PYTHONPATH="$$PYTHONPATH:$(LIBXML_SRC)/python:$(LIBXML_SRC)/python/.libs"; fi; \
+ export PYTHONPATH; \
+ for test in $(TESTSPY) ; do echo "-- $$test" ; (cd $(srcdir) && $(PYTHON) $$test ); done)
+else
+tests:
+endif
+
+install-data-local:
+ $(MKDIR_P) $(DESTDIR)$(EXAMPLE_DIR)
+ -(for test in $(TESTSPY) $(XMLS) $(EXTRAS); \
+ do $(INSTALL) -m 0644 $(srcdir)/$$test $(DESTDIR)$(EXAMPLE_DIR) ; done)
+

Powered by Google App Engine
This is Rietveld 408576698