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

Unified Diff: third_party/libxslt/win32/defgen.xsl

Issue 2865973002: Check in the libxslt roll script. (Closed)
Patch Set: Consistent quotes. Created 3 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
« no previous file with comments | « third_party/libxslt/win32/configure.js ('k') | third_party/libxslt/win32/libexslt.def.src » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libxslt/win32/defgen.xsl
diff --git a/third_party/libxslt/win32/defgen.xsl b/third_party/libxslt/win32/defgen.xsl
deleted file mode 100644
index 6a295374c310a28898fa7bdc4a00c8d48b05599b..0000000000000000000000000000000000000000
--- a/third_party/libxslt/win32/defgen.xsl
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0"?>
-<!--
- win32/defgen.xsl
- This stylesheet is used to transform doc/lib[e]xslt-api.xml into a pseudo-source,
- which can then be preprocessed to get the .DEF file for the Microsoft's linker.
-
- Use any XSLT processor to produce a file called lib[e]xslt.def.src in the win32
- subdirectory, for example, run xsltproc from the win32 subdirectory:
-
- xsltproc -o libxslt.def.src defgen.xsl ../doc/libxslt-api.xml
- xsltproc -o libexslt.def.src defgen.xsl ../doc/libexslt-api.xml
-
- Once that finishes, rest assured, the Makefile will know what to do with the
- generated file.
-
- May 2003, Igor Zlatkovic <igor@zlatkovic.com>
--->
-<!DOCTYPE xsl:stylesheet [ <!ENTITY nl '&#xd;&#xa;'> ]>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:strip-space elements="*"/>
- <xsl:output method="text"/>
- <xsl:template match="/">
- <xsl:text>LIBRARY </xsl:text>
- <xsl:value-of select="/api/@name"/>
- <xsl:text>&nl;</xsl:text>
- <xsl:text>EXPORTS&nl;</xsl:text>
- <xsl:for-each select="/api/symbols/*[self::variable or self::function]">
- <xsl:if test="@name='xsltExtFunctionLookup' or
- @name='xsltMatchPattern'">
- <xsl:text>/*</xsl:text>
- </xsl:if>
- <xsl:value-of select="@name"/>
- <xsl:if test="self::variable">
- <xsl:text> DATA</xsl:text>
- </xsl:if>
- <xsl:if test="@name='xsltExtFunctionLookup' or
- @name='xsltMatchPattern'">
- <xsl:text>*/</xsl:text>
- </xsl:if>
- <xsl:text>&nl;</xsl:text>
- </xsl:for-each>
- </xsl:template>
-</xsl:stylesheet>
-
« no previous file with comments | « third_party/libxslt/win32/configure.js ('k') | third_party/libxslt/win32/libexslt.def.src » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698