~ubuntu-branches/ubuntu/quantal/enigmail/quantal-security

« back to all changes in this revision

Viewing changes to content/svg/content/src/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2013-09-13 16:02:15 UTC
  • mfrom: (0.12.16)
  • Revision ID: package-import@ubuntu.com-20130913160215-u3g8nmwa0pdwagwc
Tags: 2:1.5.2-0ubuntu0.12.10.1
* New upstream release v1.5.2 for Thunderbird 24

* Build enigmail using a stripped down Thunderbird 17 build system, as it's
  now quite difficult to build the way we were doing previously, with the
  latest Firefox build system
* Add debian/patches/no_libxpcom.patch - Don't link against libxpcom, as it
  doesn't exist anymore (but exists in the build system)
* Add debian/patches/use_sdk.patch - Use the SDK version of xpt.py and
  friends
* Drop debian/patches/ipc-pipe_rename.diff (not needed anymore)
* Drop debian/patches/makefile_depth.diff (not needed anymore)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# This Source Code Form is subject to the terms of the Mozilla Public
3
 
# License, v. 2.0. If a copy of the MPL was not distributed with this
4
 
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
5
 
 
6
 
DEPTH           = @DEPTH@
7
 
topsrcdir       = @top_srcdir@
8
 
srcdir          = @srcdir@
9
 
VPATH           = @srcdir@
10
 
 
11
 
include $(DEPTH)/config/autoconf.mk
12
 
 
13
 
MODULE          = content
14
 
LIBRARY_NAME    = gkcontentsvg_s
15
 
LIBXUL_LIBRARY  = 1
16
 
FAIL_ON_WARNINGS        = 1
17
 
 
18
 
CPPSRCS         = \
19
 
                DOMSVGAnimatedLengthList.cpp \
20
 
                DOMSVGAnimatedNumberList.cpp \
21
 
                DOMSVGAnimatedTransformList.cpp \
22
 
                DOMSVGLength.cpp \
23
 
                DOMSVGLengthList.cpp \
24
 
                DOMSVGMatrix.cpp \
25
 
                DOMSVGNumber.cpp \
26
 
                DOMSVGNumberList.cpp \
27
 
                DOMSVGPathSeg.cpp \
28
 
                DOMSVGPathSegList.cpp \
29
 
                DOMSVGPoint.cpp \
30
 
                DOMSVGPointList.cpp \
31
 
                DOMSVGStringList.cpp \
32
 
                DOMSVGTests.cpp \
33
 
                DOMSVGTransform.cpp \
34
 
                DOMSVGTransformList.cpp \
35
 
                nsDOMSVGZoomEvent.cpp \
36
 
                nsDOMSVGEvent.cpp \
37
 
                nsSVGAElement.cpp \
38
 
                nsSVGAltGlyphElement.cpp \
39
 
                nsSVGAngle.cpp \
40
 
                nsSVGBoolean.cpp \
41
 
                nsSVGCircleElement.cpp \
42
 
                nsSVGClass.cpp \
43
 
                nsSVGClipPathElement.cpp \
44
 
                nsSVGDataParser.cpp \
45
 
                nsSVGDefsElement.cpp \
46
 
                nsSVGDescElement.cpp \
47
 
                nsSVGElement.cpp \
48
 
                nsSVGElementFactory.cpp \
49
 
                nsSVGEllipseElement.cpp \
50
 
                nsSVGEnum.cpp \
51
 
                nsSVGFeatures.cpp \
52
 
                nsSVGFilterElement.cpp \
53
 
                nsSVGFilters.cpp \
54
 
                nsSVGForeignObjectElement.cpp \
55
 
                nsSVGGElement.cpp \
56
 
                nsSVGGradientElement.cpp \
57
 
                nsSVGGraphicElement.cpp \
58
 
                nsSVGImageElement.cpp \
59
 
                nsSVGInteger.cpp \
60
 
                nsSVGIntegerPair.cpp \
61
 
                nsSVGLength2.cpp \
62
 
                nsSVGLineElement.cpp \
63
 
                nsSVGMarkerElement.cpp \
64
 
                nsSVGMaskElement.cpp \
65
 
                nsSVGMetadataElement.cpp \
66
 
                nsSVGNumber2.cpp \
67
 
                nsSVGNumberPair.cpp \
68
 
                nsSVGPathDataParser.cpp \
69
 
                nsSVGPathElement.cpp \
70
 
                nsSVGPathGeometryElement.cpp \
71
 
                nsSVGPatternElement.cpp \
72
 
                nsSVGPolyElement.cpp \
73
 
                nsSVGPolygonElement.cpp \
74
 
                nsSVGPolylineElement.cpp \
75
 
                nsSVGScriptElement.cpp \
76
 
                nsSVGString.cpp \
77
 
                nsSVGStylableElement.cpp \
78
 
                nsSVGRect.cpp \
79
 
                nsSVGRectElement.cpp \
80
 
                nsSVGSVGElement.cpp \
81
 
                nsSVGStopElement.cpp \
82
 
                nsSVGStyleElement.cpp \
83
 
                nsSVGSwitchElement.cpp \
84
 
                nsSVGSymbolElement.cpp \
85
 
                nsSVGTSpanElement.cpp \
86
 
                nsSVGTextContentElement.cpp \
87
 
                nsSVGTextElement.cpp \
88
 
                nsSVGTextPathElement.cpp \
89
 
                nsSVGTextPositioningElement.cpp \
90
 
                nsSVGTitleElement.cpp \
91
 
                nsSVGUnknownElement.cpp \
92
 
                nsSVGUseElement.cpp \
93
 
                nsSVGViewBox.cpp \
94
 
                nsSVGViewElement.cpp \
95
 
                SVGAnimatedLengthList.cpp \
96
 
                SVGAnimatedNumberList.cpp \
97
 
                SVGAnimatedPathSegList.cpp \
98
 
                SVGAnimatedPointList.cpp \
99
 
                SVGAnimatedPreserveAspectRatio.cpp \
100
 
                SVGAnimatedTransformList.cpp \
101
 
                SVGFragmentIdentifier.cpp \
102
 
                SVGLength.cpp \
103
 
                SVGLengthList.cpp \
104
 
                SVGNumberList.cpp \
105
 
                SVGPathData.cpp \
106
 
                SVGPathSegUtils.cpp \
107
 
                SVGPointList.cpp \
108
 
                SVGStringList.cpp \
109
 
                SVGTransform.cpp \
110
 
                SVGTransformList.cpp \
111
 
                SVGTransformListParser.cpp \
112
 
                nsSVGAnimateElement.cpp \
113
 
                nsSVGAnimateTransformElement.cpp \
114
 
                nsSVGAnimateMotionElement.cpp \
115
 
                nsSVGAnimationElement.cpp \
116
 
                nsSVGMpathElement.cpp \
117
 
                nsSVGSetElement.cpp \
118
 
                SVGAttrValueWrapper.cpp \
119
 
                SVGIntegerPairSMILType.cpp \
120
 
                SVGLengthListSMILType.cpp \
121
 
                SVGMotionSMILType.cpp \
122
 
                SVGMotionSMILAttr.cpp \
123
 
                SVGMotionSMILAnimationFunction.cpp \
124
 
                SVGMotionSMILPathUtils.cpp \
125
 
                SVGNumberListSMILType.cpp \
126
 
                SVGNumberPairSMILType.cpp \
127
 
                SVGOrientSMILType.cpp \
128
 
                SVGPathSegListSMILType.cpp \
129
 
                SVGPointListSMILType.cpp \
130
 
                SVGTransformListSMILType.cpp \
131
 
                SVGViewBoxSMILType.cpp \
132
 
                $(NULL)
133
 
 
134
 
include $(topsrcdir)/config/config.mk
135
 
 
136
 
# we don't want the shared lib, but we want to force the creation of a static lib.
137
 
FORCE_STATIC_LIB = 1
138
 
 
139
 
EXPORTS =                       \
140
 
        nsSVGFeatures.h            \
141
 
        nsSVGRect.h                \
142
 
        SVGAttrValueWrapper.h      \
143
 
        $(NULL)
144
 
 
145
 
include $(topsrcdir)/config/rules.mk
146
 
 
147
 
INCLUDES +=     \
148
 
                -I$(srcdir)/../../../xml/content/src \
149
 
                -I$(srcdir)/../../../../dom \
150
 
                -I$(srcdir)/../../../base/src \
151
 
                -I$(srcdir)/../../../../layout/generic \
152
 
                -I$(srcdir)/../../../../layout/xul/base/src \
153
 
                -I$(srcdir)/../../../../layout/svg/base/src \
154
 
                -I$(srcdir)/../../../../layout/style \
155
 
                -I$(srcdir)/../../../events/src \
156
 
                -I$(srcdir)/../../../html/content/src \
157
 
                -I$(topsrcdir)/content/xbl/src \
158
 
                -I$(srcdir)/../../../smil \
159
 
                $(NULL)
160
 
 
161
 
DEFINES += -D_IMPL_NS_LAYOUT