2001-12-12 10:59:31 +03:00
|
|
|
#!nmake
|
|
|
|
#
|
2004-04-18 01:52:36 +04:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2001-12-12 10:59:31 +03:00
|
|
|
#
|
2004-04-18 01:52:36 +04:00
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
2001-12-12 10:59:31 +03:00
|
|
|
#
|
|
|
|
# The Original Code is Crocodile Clips Ltd code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
2004-04-18 01:52:36 +04:00
|
|
|
# Crocodile Clips Ltd.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
2009-01-15 07:38:07 +03:00
|
|
|
# Chris Double <chris.double@double.co.nz>
|
2004-04-18 01:52:36 +04:00
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
2001-12-12 10:59:31 +03:00
|
|
|
|
|
|
|
|
2009-03-03 20:46:49 +03:00
|
|
|
DEPTH = ../../..
|
2001-12-12 10:59:31 +03:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = dom
|
|
|
|
XPIDL_MODULE = dom_svg
|
|
|
|
|
|
|
|
|
|
|
|
XPIDLSRCS = \
|
2005-03-23 04:42:22 +03:00
|
|
|
nsIDOMGetSVGDocument.idl \
|
2007-01-27 02:45:15 +03:00
|
|
|
nsIDOMSVGAElement.idl \
|
2010-04-13 12:58:09 +04:00
|
|
|
nsIDOMSVGAltGlyphElement.idl \
|
2004-12-09 06:16:15 +03:00
|
|
|
nsIDOMSVGAngle.idl \
|
|
|
|
nsIDOMSVGAnimatedAngle.idl \
|
2007-06-27 23:02:58 +04:00
|
|
|
nsIDOMSVGAnimatedBoolean.idl \
|
2002-01-10 13:55:28 +03:00
|
|
|
nsIDOMSVGAnimatedEnum.idl \
|
2005-09-07 02:30:40 +04:00
|
|
|
nsIDOMSVGAnimatedInteger.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGAnimatedLength.idl \
|
2002-01-07 16:52:14 +03:00
|
|
|
nsIDOMSVGAnimatedLengthList.idl \
|
2004-10-15 03:02:53 +04:00
|
|
|
nsIDOMSVGAnimatedNumber.idl \
|
2002-01-07 16:52:14 +03:00
|
|
|
nsIDOMSVGAnimatedNumberList.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGAnimatedPathData.idl \
|
|
|
|
nsIDOMSVGAnimatedPoints.idl \
|
2010-04-13 12:58:09 +04:00
|
|
|
nsIDOMSVGAnimatedRect.idl \
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
nsIDOMSVGAnimatedString.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGAnimPresAspRatio.idl \
|
|
|
|
nsIDOMSVGAnimTransformList.idl \
|
|
|
|
nsIDOMSVGCircleElement.idl \
|
2005-01-25 06:55:03 +03:00
|
|
|
nsIDOMSVGClipPathElement.idl \
|
2004-06-23 22:14:04 +04:00
|
|
|
nsIDOMSVGDefsElement.idl \
|
2005-01-24 20:42:23 +03:00
|
|
|
nsIDOMSVGDescElement.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGDocument.idl \
|
|
|
|
nsIDOMSVGElement.idl \
|
|
|
|
nsIDOMSVGEllipseElement.idl \
|
2005-08-26 01:31:09 +04:00
|
|
|
nsIDOMSVGEvent.idl \
|
2004-07-22 22:34:36 +04:00
|
|
|
nsIDOMSVGException.idl \
|
2005-09-07 02:30:40 +04:00
|
|
|
nsIDOMSVGFilterElement.idl \
|
|
|
|
nsIDOMSVGFilters.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGFitToViewBox.idl \
|
|
|
|
nsIDOMSVGForeignObjectElem.idl \
|
|
|
|
nsIDOMSVGGElement.idl \
|
2004-10-15 03:02:53 +04:00
|
|
|
nsIDOMSVGGradientElement.idl \
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
nsIDOMSVGImageElement.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGLength.idl \
|
2002-01-07 16:52:14 +03:00
|
|
|
nsIDOMSVGLengthList.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGLineElement.idl \
|
|
|
|
nsIDOMSVGLocatable.idl \
|
2004-12-09 06:16:15 +03:00
|
|
|
nsIDOMSVGMarkerElement.idl \
|
2006-01-20 20:00:43 +03:00
|
|
|
nsIDOMSVGMaskElement.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGMatrix.idl \
|
2005-01-24 20:42:23 +03:00
|
|
|
nsIDOMSVGMetadataElement.idl \
|
2002-01-07 16:52:14 +03:00
|
|
|
nsIDOMSVGNumber.idl \
|
|
|
|
nsIDOMSVGNumberList.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGPathElement.idl \
|
|
|
|
nsIDOMSVGPathSeg.idl \
|
|
|
|
nsIDOMSVGPathSegList.idl \
|
2005-09-14 02:38:36 +04:00
|
|
|
nsIDOMSVGPatternElement.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGPoint.idl \
|
|
|
|
nsIDOMSVGPointList.idl \
|
|
|
|
nsIDOMSVGPolygonElement.idl \
|
|
|
|
nsIDOMSVGPolylineElement.idl \
|
|
|
|
nsIDOMSVGPresAspectRatio.idl \
|
|
|
|
nsIDOMSVGRect.idl \
|
2002-01-07 16:52:14 +03:00
|
|
|
nsIDOMSVGRectElement.idl \
|
2004-07-07 02:52:03 +04:00
|
|
|
nsIDOMSVGScriptElement.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGSVGElement.idl \
|
2004-10-15 03:02:53 +04:00
|
|
|
nsIDOMSVGStopElement.idl \
|
2002-01-07 16:52:14 +03:00
|
|
|
nsIDOMSVGStylable.idl \
|
2004-04-13 03:21:42 +04:00
|
|
|
nsIDOMSVGStyleElement.idl \
|
2007-02-05 19:26:23 +03:00
|
|
|
nsIDOMSVGSwitchElement.idl \
|
2004-11-23 16:51:57 +03:00
|
|
|
nsIDOMSVGSymbolElement.idl \
|
2002-01-07 16:52:14 +03:00
|
|
|
nsIDOMSVGTextContentElement.idl \
|
|
|
|
nsIDOMSVGTextElement.idl \
|
2005-08-26 06:49:52 +04:00
|
|
|
nsIDOMSVGTextPathElement.idl \
|
2002-01-10 13:55:28 +03:00
|
|
|
nsIDOMSVGTextPositionElem.idl \
|
2005-01-24 20:42:23 +03:00
|
|
|
nsIDOMSVGTitleElement.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
nsIDOMSVGTransform.idl \
|
|
|
|
nsIDOMSVGTransformList.idl \
|
2002-01-07 16:52:14 +03:00
|
|
|
nsIDOMSVGTransformable.idl \
|
|
|
|
nsIDOMSVGTSpanElement.idl \
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
nsIDOMSVGURIReference.idl \
|
2007-08-28 03:11:14 +04:00
|
|
|
nsIDOMSVGUnitTypes.idl \
|
2004-11-23 16:51:57 +03:00
|
|
|
nsIDOMSVGUseElement.idl \
|
2006-06-29 01:48:57 +04:00
|
|
|
nsIDOMSVGViewSpec.idl \
|
2004-12-03 02:13:13 +03:00
|
|
|
nsIDOMSVGZoomAndPan.idl \
|
2005-08-26 01:31:09 +04:00
|
|
|
nsIDOMSVGZoomEvent.idl \
|
2001-12-12 10:59:31 +03:00
|
|
|
$(NULL)
|
|
|
|
|
2009-01-15 07:38:07 +03:00
|
|
|
ifdef MOZ_SMIL
|
|
|
|
XPIDLSRCS += \
|
|
|
|
nsIDOMSVGAnimateElement.idl \
|
2009-01-19 12:14:16 +03:00
|
|
|
nsIDOMSVGAnimateTransformElement.idl \
|
2010-04-29 03:00:53 +04:00
|
|
|
nsIDOMSVGAnimateMotionElement.idl \
|
2009-01-15 07:38:07 +03:00
|
|
|
nsIDOMSVGAnimationElement.idl \
|
2010-04-29 03:00:54 +04:00
|
|
|
nsIDOMSVGMpathElement.idl \
|
2009-01-15 07:38:07 +03:00
|
|
|
nsIDOMSVGSetElement.idl \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2001-12-12 10:59:31 +03:00
|
|
|
include $(topsrcdir)/config/rules.mk
|