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

« back to all changes in this revision

Viewing changes to gfx/layers/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       = \
10
 
  $(srcdir) \
11
 
  $(srcdir)/basic \
12
 
  $(srcdir)/opengl \
13
 
  $(srcdir)/d3d9 \
14
 
  $(srcdir)/d3d10 \
15
 
  $(srcdir)/ipc \
16
 
  $(NULL)
17
 
 
18
 
include $(DEPTH)/config/autoconf.mk
19
 
 
20
 
MODULE         = thebes
21
 
LIBRARY_NAME   = layers
22
 
LIBXUL_LIBRARY = 1
23
 
FORCE_STATIC_LIB = 1
24
 
 
25
 
DEFINES += -DIMPL_THEBES
26
 
ifdef MOZ_DEBUG
27
 
DEFINES += -DD3D_DEBUG_INFO
28
 
endif
29
 
 
30
 
EXPORTS = \
31
 
        BasicLayers.h \
32
 
        BasicTiledThebesLayer.h \
33
 
        BasicImplData.h \
34
 
        GonkIOSurfaceImage.h \
35
 
        FrameMetrics.h \
36
 
        CompositorChild.h \
37
 
        CompositorParent.h \
38
 
        ImageContainer.h \
39
 
        ImageLayers.h \
40
 
        ImageTypes.h \
41
 
        Layers.h \
42
 
        LayersTypes.h \
43
 
        LayerManagerOGLShaders.h \
44
 
        LayerManagerOGL.h \
45
 
        LayerManagerOGLProgram.h \
46
 
        LayerSorter.h \
47
 
        ReadbackLayer.h \
48
 
        ShadowLayersManager.h \
49
 
        SharedTextureImage.h \
50
 
        TexturePoolOGL.h \
51
 
        $(NULL)
52
 
 
53
 
CPPSRCS = \
54
 
        BasicImages.cpp \
55
 
        BasicLayerManager.cpp \
56
 
        BasicCanvasLayer.cpp \
57
 
        BasicColorLayer.cpp \
58
 
        BasicContainerLayer.cpp \
59
 
        BasicImageLayer.cpp \
60
 
        BasicLayersImpl.cpp \
61
 
        BasicThebesLayer.cpp \
62
 
        BasicBuffers.cpp \
63
 
        BasicTiledThebesLayer.cpp \
64
 
        ImageContainer.cpp \
65
 
        Layers.cpp \
66
 
        RenderTrace.cpp \
67
 
        ReadbackProcessor.cpp \
68
 
        ThebesLayerBuffer.cpp \
69
 
        CanvasLayerOGL.cpp \
70
 
        ColorLayerOGL.cpp \
71
 
        ContainerLayerOGL.cpp \
72
 
        ImageLayerOGL.cpp \
73
 
        LayerManagerOGL.cpp \
74
 
        ThebesLayerOGL.cpp \
75
 
        TiledThebesLayerOGL.cpp \
76
 
        ReusableTileStoreOGL.cpp \
77
 
        LayerManagerOGLProgram.cpp \
78
 
        LayerSorter.cpp \
79
 
        ImageLayers.cpp \
80
 
        TexturePoolOGL.cpp \
81
 
        $(NULL)
82
 
 
83
 
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
84
 
ifdef MOZ_ENABLE_D3D9_LAYER
85
 
EXPORTS += \
86
 
        LayerManagerD3D9.h \
87
 
        DeviceManagerD3D9.h \
88
 
        $(NULL)
89
 
 
90
 
CPPSRCS += \
91
 
        LayerManagerD3D9.cpp \
92
 
        ThebesLayerD3D9.cpp \
93
 
        ContainerLayerD3D9.cpp \
94
 
        ImageLayerD3D9.cpp \
95
 
        ColorLayerD3D9.cpp \
96
 
        CanvasLayerD3D9.cpp \
97
 
        ShadowBufferD3D9.cpp \
98
 
        DeviceManagerD3D9.cpp \
99
 
        Nv3DVUtils.cpp \
100
 
        $(NULL)
101
 
endif
102
 
ifdef MOZ_ENABLE_D3D10_LAYER
103
 
EXPORTS += \
104
 
        LayerManagerD3D10.h \
105
 
        ReadbackManagerD3D10.h \
106
 
        $(NULL)
107
 
 
108
 
CPPSRCS += \
109
 
        CanvasLayerD3D10.cpp \
110
 
        ColorLayerD3D10.cpp \
111
 
        ContainerLayerD3D10.cpp \
112
 
        ImageLayerD3D10.cpp \
113
 
        LayerManagerD3D10.cpp \
114
 
        ReadbackManagerD3D10.cpp \
115
 
        ShadowLayerUtilsD3D10.cpp \
116
 
        ThebesLayerD3D10.cpp \
117
 
        $(NULL)
118
 
endif
119
 
endif
120
 
 
121
 
EXPORTS_NAMESPACES = gfxipc mozilla/layers
122
 
EXPORTS_gfxipc = ShadowLayerUtils.h
123
 
EXPORTS_mozilla/layers =\
124
 
        AsyncPanZoomController.h \
125
 
        Axis.h \
126
 
        CompositorCocoaWidgetHelper.h \
127
 
        CompositorChild.h \
128
 
        CompositorParent.h \
129
 
        GeckoContentController.h \
130
 
        GestureEventListener.h \
131
 
        ImageBridgeChild.h \
132
 
        ImageBridgeParent.h \
133
 
        ImageContainerChild.h \
134
 
        ImageContainerParent.h \
135
 
        ShadowLayers.h \
136
 
        ShadowLayersChild.h \
137
 
        ShadowLayersParent.h \
138
 
        ShadowLayersManager.h \
139
 
        RenderTrace.h \
140
 
        SharedImageUtils.h \
141
 
        $(NULL)
142
 
 
143
 
CPPSRCS += \
144
 
        AsyncPanZoomController.cpp \
145
 
        Axis.cpp \
146
 
        CompositorCocoaWidgetHelper.cpp \
147
 
        CompositorChild.cpp \
148
 
        CompositorParent.cpp \
149
 
        GestureEventListener.cpp \
150
 
        ImageBridgeChild.cpp \
151
 
        ImageBridgeParent.cpp \
152
 
        ImageContainerChild.cpp \
153
 
        ImageContainerParent.cpp \
154
 
        ShadowLayers.cpp \
155
 
        ShadowLayerChild.cpp \
156
 
        ShadowLayersChild.cpp \
157
 
        ShadowLayerParent.cpp \
158
 
        ShadowLayersParent.cpp \
159
 
        $(NULL)
160
 
 
161
 
ifdef MOZ_X11 #{
162
 
EXPORTS_mozilla/layers += ShadowLayerUtilsX11.h
163
 
CPPSRCS += ShadowLayerUtilsX11.cpp
164
 
endif #}
165
 
 
166
 
ifdef MOZ_ENABLE_D3D10_LAYER
167
 
EXPORTS_mozilla/layers += ShadowLayerUtilsD3D10.h
168
 
DEFINES += -DMOZ_ENABLE_D3D10_LAYER
169
 
endif
170
 
 
171
 
# NB: Gralloc is available on other platforms that use the android GL
172
 
# libraries, but only Gonk is able to use it reliably because Gecko
173
 
# has full system permissions there.
174
 
ifeq ($(MOZ_WIDGET_TOOLKIT),gonk)
175
 
EXPORTS_mozilla/layers += ShadowLayerUtilsGralloc.h
176
 
CPPSRCS += \
177
 
        ShadowLayerUtilsGralloc.cpp \
178
 
        GrallocImages.cpp \
179
 
        $(NULL)
180
 
endif
181
 
 
182
 
include $(topsrcdir)/config/rules.mk
183
 
 
184
 
include $(topsrcdir)/ipc/chromium/chromium-config.mk
185
 
 
186
 
LOCAL_INCLUDES += \
187
 
        -I$(topsrcdir)/content/events/src \
188
 
        $(NULL)
189
 
 
190
 
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS) $(TK_CFLAGS)