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:22 -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-04-16 12:24:43 -07:00
|
|
|
EXPORTS += [
|
|
|
|
'nsSVGEffects.h',
|
|
|
|
'nsSVGFilterInstance.h',
|
|
|
|
'nsSVGForeignObjectFrame.h',
|
|
|
|
'nsSVGIntegrationUtils.h',
|
|
|
|
'nsSVGUtils.h',
|
2013-10-23 16:05:43 -07:00
|
|
|
'SVGImageContext.h',
|
2013-04-16 12:24:43 -07:00
|
|
|
]
|
|
|
|
|
2013-11-14 18:48:52 -08:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 14:54:15 -07:00
|
|
|
'nsSVGAFrame.cpp',
|
|
|
|
'nsSVGClipPathFrame.cpp',
|
|
|
|
'nsSVGContainerFrame.cpp',
|
|
|
|
'nsSVGEffects.cpp',
|
|
|
|
'nsSVGFilterFrame.cpp',
|
|
|
|
'nsSVGFilterInstance.cpp',
|
|
|
|
'nsSVGForeignObjectFrame.cpp',
|
|
|
|
'nsSVGGenericContainerFrame.cpp',
|
|
|
|
'nsSVGGeometryFrame.cpp',
|
2013-10-23 16:05:43 -07:00
|
|
|
'nsSVGGFrame.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
'nsSVGGradientFrame.cpp',
|
|
|
|
'nsSVGImageFrame.cpp',
|
|
|
|
'nsSVGInnerSVGFrame.cpp',
|
|
|
|
'nsSVGIntegrationUtils.cpp',
|
|
|
|
'nsSVGMarkerFrame.cpp',
|
|
|
|
'nsSVGMaskFrame.cpp',
|
|
|
|
'nsSVGOuterSVGFrame.cpp',
|
|
|
|
'nsSVGPaintServerFrame.cpp',
|
|
|
|
'nsSVGPathGeometryFrame.cpp',
|
|
|
|
'nsSVGPatternFrame.cpp',
|
|
|
|
'nsSVGStopFrame.cpp',
|
|
|
|
'nsSVGSwitchFrame.cpp',
|
|
|
|
'nsSVGTextFrame2.cpp',
|
|
|
|
'nsSVGUseFrame.cpp',
|
|
|
|
'nsSVGUtils.cpp',
|
2013-10-23 16:05:43 -07:00
|
|
|
'SVGFEContainerFrame.cpp',
|
|
|
|
'SVGFEImageFrame.cpp',
|
|
|
|
'SVGFELeafFrame.cpp',
|
|
|
|
'SVGFEUnstyledLeafFrame.cpp',
|
|
|
|
'SVGViewFrame.cpp',
|
2013-04-23 14:54:15 -07:00
|
|
|
]
|
|
|
|
|
2013-08-21 23:55:59 -07:00
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-11-18 18:47:14 -08:00
|
|
|
FINAL_LIBRARY = 'gklayout'
|
2013-11-28 06:23:10 -08:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../../content/base/src',
|
|
|
|
'../../content/svg/content/src',
|
|
|
|
'../../widget',
|
|
|
|
'../base',
|
|
|
|
'../generic',
|
|
|
|
'../style',
|
2013-12-04 00:23:39 -08:00
|
|
|
'../xul/base/src',
|
2013-11-28 06:23:10 -08:00
|
|
|
]
|
|
|
|
|