2010-03-01 07:56:18 +00:00
|
|
|
#
|
2012-05-21 11:12:37 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2010-03-01 07:56:18 +00:00
|
|
|
|
2012-08-04 18:26:44 +00:00
|
|
|
DEPTH = @DEPTH@
|
2010-03-01 07:56:18 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
2010-03-14 17:30:40 +00:00
|
|
|
VPATH = \
|
|
|
|
$(srcdir) \
|
|
|
|
$(srcdir)/basic \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
$(srcdir)/client \
|
|
|
|
$(srcdir)/composite \
|
2010-03-30 04:48:52 +00:00
|
|
|
$(srcdir)/opengl \
|
2010-05-24 15:28:51 +00:00
|
|
|
$(srcdir)/d3d9 \
|
2010-09-30 22:53:51 +00:00
|
|
|
$(srcdir)/d3d10 \
|
2011-04-03 02:14:00 +00:00
|
|
|
$(srcdir)/ipc \
|
2010-03-14 17:30:40 +00:00
|
|
|
$(NULL)
|
2010-03-01 07:56:18 +00:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
LIBRARY_NAME = layers
|
|
|
|
LIBXUL_LIBRARY = 1
|
2010-04-28 20:43:52 +00:00
|
|
|
FORCE_STATIC_LIB = 1
|
2010-03-01 07:56:18 +00:00
|
|
|
|
2010-03-01 10:46:37 +00:00
|
|
|
DEFINES += -DIMPL_THEBES
|
2010-05-24 15:28:51 +00:00
|
|
|
ifdef MOZ_DEBUG
|
|
|
|
DEFINES += -DD3D_DEBUG_INFO
|
|
|
|
endif
|
2010-03-01 10:46:37 +00:00
|
|
|
|
2010-03-01 07:56:18 +00:00
|
|
|
CPPSRCS = \
|
2010-03-01 23:09:35 +00:00
|
|
|
BasicImages.cpp \
|
2012-06-29 06:01:34 +00:00
|
|
|
BasicLayerManager.cpp \
|
|
|
|
BasicCanvasLayer.cpp \
|
|
|
|
BasicColorLayer.cpp \
|
2013-05-01 00:42:05 +00:00
|
|
|
BasicCompositor.cpp \
|
2012-06-29 06:01:34 +00:00
|
|
|
BasicContainerLayer.cpp \
|
|
|
|
BasicImageLayer.cpp \
|
|
|
|
BasicLayersImpl.cpp \
|
|
|
|
BasicThebesLayer.cpp \
|
2013-05-01 05:03:25 +00:00
|
|
|
ClientCanvasLayer.cpp \
|
|
|
|
ClientColorLayer.cpp \
|
|
|
|
ClientContainerLayer.cpp \
|
|
|
|
ClientImageLayer.cpp \
|
|
|
|
ClientLayerManager.cpp \
|
|
|
|
ClientThebesLayer.cpp \
|
|
|
|
ClientTiledThebesLayer.cpp \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
CompositableHost.cpp \
|
|
|
|
CompositableTransactionParent.cpp \
|
2013-05-01 05:03:25 +00:00
|
|
|
CopyableCanvasLayer.cpp \
|
2012-08-19 19:33:25 +00:00
|
|
|
ImageContainer.cpp \
|
2011-02-16 22:43:30 +00:00
|
|
|
Layers.cpp \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
LayersLogging.cpp \
|
2012-02-17 22:05:03 +00:00
|
|
|
RenderTrace.cpp \
|
2011-02-16 22:43:30 +00:00
|
|
|
ReadbackProcessor.cpp \
|
2010-03-03 21:37:04 +00:00
|
|
|
ThebesLayerBuffer.cpp \
|
|
|
|
CanvasLayerOGL.cpp \
|
2010-05-13 00:56:11 +00:00
|
|
|
ColorLayerOGL.cpp \
|
2010-03-30 04:48:52 +00:00
|
|
|
ContainerLayerOGL.cpp \
|
|
|
|
ImageLayerOGL.cpp \
|
2010-03-03 21:37:04 +00:00
|
|
|
LayerManagerOGL.cpp \
|
|
|
|
ThebesLayerOGL.cpp \
|
2012-03-18 20:07:25 +00:00
|
|
|
LayerManagerOGLProgram.cpp \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
CanvasLayerComposite.cpp \
|
|
|
|
ColorLayerComposite.cpp \
|
|
|
|
ContainerLayerComposite.cpp \
|
|
|
|
ImageLayerComposite.cpp \
|
|
|
|
LayerManagerComposite.cpp \
|
|
|
|
ThebesLayerComposite.cpp \
|
2011-10-06 21:23:18 +00:00
|
|
|
LayerSorter.cpp \
|
2012-08-29 05:47:18 +00:00
|
|
|
LayerTreeInvalidation.cpp \
|
2012-02-01 02:18:30 +00:00
|
|
|
ImageLayers.cpp \
|
2012-07-20 19:20:51 +00:00
|
|
|
TexturePoolOGL.cpp \
|
2010-03-01 07:56:18 +00:00
|
|
|
$(NULL)
|
2010-03-03 21:37:04 +00:00
|
|
|
|
2013-02-22 21:25:58 +00:00
|
|
|
GTEST_CPPSRCS = \
|
|
|
|
TestTiledLayerBuffer.cpp \
|
|
|
|
$(NULL)
|
|
|
|
|
2010-05-24 15:28:51 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
2013-05-04 10:12:40 +00:00
|
|
|
CPPSRCS += \
|
|
|
|
D3D9SurfaceImage.cpp \
|
|
|
|
$(NULL)
|
2010-06-06 10:37:44 +00:00
|
|
|
ifdef MOZ_ENABLE_D3D9_LAYER
|
2010-05-24 15:28:51 +00:00
|
|
|
CPPSRCS += \
|
|
|
|
LayerManagerD3D9.cpp \
|
|
|
|
ThebesLayerD3D9.cpp \
|
|
|
|
ContainerLayerD3D9.cpp \
|
|
|
|
ImageLayerD3D9.cpp \
|
|
|
|
ColorLayerD3D9.cpp \
|
|
|
|
CanvasLayerD3D9.cpp \
|
2010-08-10 23:32:45 +00:00
|
|
|
DeviceManagerD3D9.cpp \
|
2010-08-26 20:44:53 +00:00
|
|
|
Nv3DVUtils.cpp \
|
2010-05-24 15:28:51 +00:00
|
|
|
$(NULL)
|
2010-09-30 22:53:51 +00:00
|
|
|
endif
|
|
|
|
ifdef MOZ_ENABLE_D3D10_LAYER
|
|
|
|
CPPSRCS += \
|
2011-08-09 19:38:26 +00:00
|
|
|
CanvasLayerD3D10.cpp \
|
|
|
|
ColorLayerD3D10.cpp \
|
2010-09-30 22:53:51 +00:00
|
|
|
ContainerLayerD3D10.cpp \
|
|
|
|
ImageLayerD3D10.cpp \
|
2011-08-09 19:38:26 +00:00
|
|
|
LayerManagerD3D10.cpp \
|
2011-02-05 02:30:00 +00:00
|
|
|
ReadbackManagerD3D10.cpp \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
ShadowLayerUtilsD3D10.cpp \
|
2011-08-09 19:38:26 +00:00
|
|
|
ThebesLayerD3D10.cpp \
|
2010-09-30 22:53:51 +00:00
|
|
|
$(NULL)
|
2010-05-24 15:28:51 +00:00
|
|
|
endif
|
|
|
|
endif
|
2010-03-01 07:56:18 +00:00
|
|
|
|
2010-07-21 21:17:33 +00:00
|
|
|
CPPSRCS += \
|
2013-04-28 06:46:30 +00:00
|
|
|
AsyncCompositionManager.cpp \
|
2012-07-20 06:48:25 +00:00
|
|
|
AsyncPanZoomController.cpp \
|
|
|
|
Axis.cpp \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
CanvasClient.cpp \
|
|
|
|
CompositableClient.cpp \
|
|
|
|
Compositor.cpp \
|
|
|
|
CompositorOGL.cpp \
|
2012-01-19 14:45:37 +00:00
|
|
|
CompositorCocoaWidgetHelper.cpp \
|
|
|
|
CompositorChild.cpp \
|
|
|
|
CompositorParent.cpp \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
ContentClient.cpp \
|
|
|
|
ContentHost.cpp \
|
|
|
|
Effects.cpp \
|
2012-07-20 06:48:25 +00:00
|
|
|
GestureEventListener.cpp \
|
2012-07-13 19:38:09 +00:00
|
|
|
ImageBridgeChild.cpp \
|
|
|
|
ImageBridgeParent.cpp \
|
2010-07-21 21:17:33 +00:00
|
|
|
ShadowLayers.cpp \
|
2010-08-20 23:24:41 +00:00
|
|
|
ShadowLayerChild.cpp \
|
2010-07-21 21:17:33 +00:00
|
|
|
ShadowLayerParent.cpp \
|
2013-04-24 18:42:40 +00:00
|
|
|
LayerTransactionChild.cpp \
|
|
|
|
LayerTransactionParent.cpp \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
SharedPlanarYCbCrImage.cpp \
|
2012-09-13 20:52:26 +00:00
|
|
|
ShmemYCbCrImage.cpp \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
SharedRGBImage.cpp \
|
2012-12-10 13:50:24 +00:00
|
|
|
TaskThrottler.cpp \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
ImageClient.cpp \
|
|
|
|
ImageHost.cpp \
|
|
|
|
ISurfaceAllocator.cpp \
|
|
|
|
TextureClient.cpp \
|
|
|
|
TextureClientOGL.cpp \
|
|
|
|
TextureHost.cpp \
|
2013-04-12 07:28:55 +00:00
|
|
|
TextureHostOGL.cpp \
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
TiledContentClient.cpp \
|
|
|
|
TiledContentHost.cpp \
|
2010-07-21 21:17:33 +00:00
|
|
|
$(NULL)
|
2010-09-14 05:23:08 +00:00
|
|
|
|
|
|
|
ifdef MOZ_X11 #{
|
|
|
|
CPPSRCS += ShadowLayerUtilsX11.cpp
|
|
|
|
endif #}
|
|
|
|
|
2011-08-09 19:38:26 +00:00
|
|
|
ifdef MOZ_ENABLE_D3D10_LAYER
|
|
|
|
DEFINES += -DMOZ_ENABLE_D3D10_LAYER
|
|
|
|
endif
|
|
|
|
|
2012-11-07 06:56:56 +00:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
|
2013-04-21 06:41:06 +00:00
|
|
|
CPPSRCS += \
|
|
|
|
ShadowLayerUtilsMac.cpp \
|
|
|
|
GLManager.cpp \
|
|
|
|
$(NULL)
|
2012-11-07 06:56:56 +00:00
|
|
|
endif
|
|
|
|
|
2012-07-12 12:51:58 +00:00
|
|
|
# NB: Gralloc is available on other platforms that use the android GL
|
|
|
|
# libraries, but only Gonk is able to use it reliably because Gecko
|
|
|
|
# has full system permissions there.
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gonk)
|
2012-08-21 10:22:58 +00:00
|
|
|
CPPSRCS += \
|
|
|
|
ShadowLayerUtilsGralloc.cpp \
|
|
|
|
GrallocImages.cpp \
|
2012-10-09 04:06:35 +00:00
|
|
|
GonkIOSurfaceImage.cpp \
|
2012-08-21 10:22:58 +00:00
|
|
|
$(NULL)
|
2012-07-12 12:51:58 +00:00
|
|
|
endif
|
|
|
|
|
2010-03-01 07:56:18 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2010-03-01 23:09:35 +00:00
|
|
|
|
2010-07-21 21:17:33 +00:00
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
|
2012-07-20 06:48:25 +00:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/content/events/src \
|
2012-10-09 04:06:35 +00:00
|
|
|
-I$(ANDROID_SOURCE)/frameworks/base/include/media/stagefright \
|
|
|
|
-I$(ANDROID_SOURCE)/frameworks/base/include/media/stagefright/openmax \
|
2012-07-20 06:48:25 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2012-05-26 06:44:00 +00:00
|
|
|
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS) $(TK_CFLAGS)
|
2012-10-10 06:17:30 +00:00
|
|
|
|
|
|
|
ifdef _MSC_VER
|
|
|
|
ifeq ($(CPU_ARCH),x86_64)
|
|
|
|
# Workaround compiler bug (Bug 795594)
|
|
|
|
LayerTreeInvalidation.$(OBJ_SUFFIX): CXXFLAGS += -GL-
|
|
|
|
Layers.$(OBJ_SUFFIX): CXXFLAGS += -GL-
|
|
|
|
endif
|
|
|
|
endif
|