2013-04-01 11:36:59 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:19 -08:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# 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/.
|
|
|
|
|
2013-03-19 11:47:00 -07:00
|
|
|
MODULE = 'content'
|
|
|
|
|
2013-04-16 12:24:43 -07:00
|
|
|
EXPORTS.mozilla.dom += [
|
2013-04-26 07:55:37 -07:00
|
|
|
'CanvasGradient.h',
|
2013-04-19 01:49:22 -07:00
|
|
|
'CanvasPattern.h',
|
2013-04-16 12:24:43 -07:00
|
|
|
'CanvasRenderingContext2D.h',
|
|
|
|
'CanvasUtils.h',
|
|
|
|
'ImageData.h',
|
2013-04-19 01:49:21 -07:00
|
|
|
'TextMetrics.h',
|
2013-04-16 12:24:43 -07:00
|
|
|
]
|
|
|
|
|
2013-04-23 14:54:15 -07:00
|
|
|
CPP_SOURCES += [
|
|
|
|
'CanvasImageCache.cpp',
|
|
|
|
'CanvasRenderingContext2D.cpp',
|
|
|
|
'CanvasUtils.cpp',
|
|
|
|
'DocumentRendererChild.cpp',
|
|
|
|
'DocumentRendererParent.cpp',
|
|
|
|
'ImageData.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_WEBGL']:
|
|
|
|
CPP_SOURCES += [
|
|
|
|
'WebGLActiveInfo.cpp',
|
|
|
|
'WebGLBuffer.cpp',
|
2013-07-16 07:32:24 -07:00
|
|
|
'WebGL1Context.cpp',
|
2013-07-17 06:58:09 -07:00
|
|
|
'WebGL2Context.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'WebGLContext.cpp',
|
2013-08-06 14:23:46 -07:00
|
|
|
'WebGLContextAsyncQueries.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'WebGLContextGL.cpp',
|
|
|
|
'WebGLContextUtils.cpp',
|
|
|
|
'WebGLContextReporter.cpp',
|
2013-08-15 17:43:47 -07:00
|
|
|
'WebGLContextState.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'WebGLContextValidate.cpp',
|
2013-07-17 09:13:38 -07:00
|
|
|
'WebGLContextFramebufferOperations.cpp',
|
|
|
|
'WebGLContextVertexArray.cpp',
|
2013-07-25 17:38:58 -07:00
|
|
|
'WebGLContextVertices.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'WebGLElementArrayCache.cpp',
|
|
|
|
'WebGLExtensionBase.cpp',
|
|
|
|
'WebGLExtensionCompressedTextureATC.cpp',
|
|
|
|
'WebGLExtensionCompressedTexturePVRTC.cpp',
|
|
|
|
'WebGLExtensionCompressedTextureS3TC.cpp',
|
|
|
|
'WebGLExtensionDebugRendererInfo.cpp',
|
|
|
|
'WebGLExtensionDepthTexture.cpp',
|
2013-06-21 16:44:17 -07:00
|
|
|
'WebGLExtensionDrawBuffers.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'WebGLExtensionElementIndexUint.cpp',
|
2013-08-13 15:11:01 -07:00
|
|
|
'WebGLExtensionInstancedArrays.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'WebGLExtensionLoseContext.cpp',
|
|
|
|
'WebGLExtensionStandardDerivatives.cpp',
|
|
|
|
'WebGLExtensionTextureFilterAnisotropic.cpp',
|
|
|
|
'WebGLExtensionTextureFloat.cpp',
|
2013-06-10 13:00:52 -07:00
|
|
|
'WebGLExtensionTextureFloatLinear.cpp',
|
2013-06-27 14:07:21 -07:00
|
|
|
'WebGLExtensionVertexArray.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'WebGLFramebuffer.cpp',
|
|
|
|
'WebGLObjectModel.cpp',
|
|
|
|
'WebGLProgram.cpp',
|
2013-08-06 14:23:46 -07:00
|
|
|
'WebGLQuery.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'WebGLRenderbuffer.cpp',
|
|
|
|
'WebGLShader.cpp',
|
|
|
|
'WebGLShaderPrecisionFormat.cpp',
|
|
|
|
'WebGLTexelConversions.cpp',
|
|
|
|
'WebGLTexture.cpp',
|
|
|
|
'WebGLUniformLocation.cpp',
|
2013-06-27 14:07:21 -07:00
|
|
|
'WebGLVertexArray.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
]
|
|
|
|
else:
|
|
|
|
CPP_SOURCES += [
|
|
|
|
'WebGLContextNotSupported.cpp',
|
|
|
|
]
|