layout/svg/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/svg/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,66 @@
     1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     1.5 +# vim: set filetype=python:
     1.6 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.9 +
    1.10 +EXPORTS += [
    1.11 +    'nsFilterInstance.h',
    1.12 +    'nsSVGEffects.h',
    1.13 +    'nsSVGFilterInstance.h',
    1.14 +    'nsSVGForeignObjectFrame.h',
    1.15 +    'nsSVGIntegrationUtils.h',
    1.16 +    'nsSVGUtils.h',
    1.17 +    'SVGImageContext.h',
    1.18 +]
    1.19 +
    1.20 +UNIFIED_SOURCES += [
    1.21 +    'nsFilterInstance.cpp',
    1.22 +    'nsSVGAFrame.cpp',
    1.23 +    'nsSVGClipPathFrame.cpp',
    1.24 +    'nsSVGContainerFrame.cpp',
    1.25 +    'nsSVGEffects.cpp',
    1.26 +    'nsSVGFilterFrame.cpp',
    1.27 +    'nsSVGFilterInstance.cpp',
    1.28 +    'nsSVGForeignObjectFrame.cpp',
    1.29 +    'nsSVGGenericContainerFrame.cpp',
    1.30 +    'nsSVGGFrame.cpp',
    1.31 +    'nsSVGGradientFrame.cpp',
    1.32 +    'nsSVGImageFrame.cpp',
    1.33 +    'nsSVGInnerSVGFrame.cpp',
    1.34 +    'nsSVGIntegrationUtils.cpp',
    1.35 +    'nsSVGMarkerFrame.cpp',
    1.36 +    'nsSVGMaskFrame.cpp',
    1.37 +    'nsSVGOuterSVGFrame.cpp',
    1.38 +    'nsSVGPaintServerFrame.cpp',
    1.39 +    'nsSVGPathGeometryFrame.cpp',
    1.40 +    'nsSVGPatternFrame.cpp',
    1.41 +    'nsSVGStopFrame.cpp',
    1.42 +    'nsSVGSwitchFrame.cpp',
    1.43 +    'nsSVGUseFrame.cpp',
    1.44 +    'nsSVGUtils.cpp',
    1.45 +    'SVGFEContainerFrame.cpp',
    1.46 +    'SVGFEImageFrame.cpp',
    1.47 +    'SVGFELeafFrame.cpp',
    1.48 +    'SVGFEUnstyledLeafFrame.cpp',
    1.49 +    'SVGTextFrame.cpp',
    1.50 +    'SVGViewFrame.cpp',
    1.51 +]
    1.52 +
    1.53 +FAIL_ON_WARNINGS = True
    1.54 +
    1.55 +FINAL_LIBRARY = 'gklayout'
    1.56 +LOCAL_INCLUDES += [
    1.57 +    '../../content/base/src',
    1.58 +    '../../content/svg/content/src',
    1.59 +    '../../widget',
    1.60 +    '../base',
    1.61 +    '../generic',
    1.62 +    '../style',
    1.63 +    '../xul',
    1.64 +]
    1.65 +
    1.66 +RESOURCE_FILES += [
    1.67 +    'svg.css',
    1.68 +]
    1.69 +

mercurial