Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- |
michael@0 | 2 | # vim: set filetype=python: |
michael@0 | 3 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | |
michael@0 | 7 | EXPORTS += [ |
michael@0 | 8 | 'nsFilterInstance.h', |
michael@0 | 9 | 'nsSVGEffects.h', |
michael@0 | 10 | 'nsSVGFilterInstance.h', |
michael@0 | 11 | 'nsSVGForeignObjectFrame.h', |
michael@0 | 12 | 'nsSVGIntegrationUtils.h', |
michael@0 | 13 | 'nsSVGUtils.h', |
michael@0 | 14 | 'SVGImageContext.h', |
michael@0 | 15 | ] |
michael@0 | 16 | |
michael@0 | 17 | UNIFIED_SOURCES += [ |
michael@0 | 18 | 'nsFilterInstance.cpp', |
michael@0 | 19 | 'nsSVGAFrame.cpp', |
michael@0 | 20 | 'nsSVGClipPathFrame.cpp', |
michael@0 | 21 | 'nsSVGContainerFrame.cpp', |
michael@0 | 22 | 'nsSVGEffects.cpp', |
michael@0 | 23 | 'nsSVGFilterFrame.cpp', |
michael@0 | 24 | 'nsSVGFilterInstance.cpp', |
michael@0 | 25 | 'nsSVGForeignObjectFrame.cpp', |
michael@0 | 26 | 'nsSVGGenericContainerFrame.cpp', |
michael@0 | 27 | 'nsSVGGFrame.cpp', |
michael@0 | 28 | 'nsSVGGradientFrame.cpp', |
michael@0 | 29 | 'nsSVGImageFrame.cpp', |
michael@0 | 30 | 'nsSVGInnerSVGFrame.cpp', |
michael@0 | 31 | 'nsSVGIntegrationUtils.cpp', |
michael@0 | 32 | 'nsSVGMarkerFrame.cpp', |
michael@0 | 33 | 'nsSVGMaskFrame.cpp', |
michael@0 | 34 | 'nsSVGOuterSVGFrame.cpp', |
michael@0 | 35 | 'nsSVGPaintServerFrame.cpp', |
michael@0 | 36 | 'nsSVGPathGeometryFrame.cpp', |
michael@0 | 37 | 'nsSVGPatternFrame.cpp', |
michael@0 | 38 | 'nsSVGStopFrame.cpp', |
michael@0 | 39 | 'nsSVGSwitchFrame.cpp', |
michael@0 | 40 | 'nsSVGUseFrame.cpp', |
michael@0 | 41 | 'nsSVGUtils.cpp', |
michael@0 | 42 | 'SVGFEContainerFrame.cpp', |
michael@0 | 43 | 'SVGFEImageFrame.cpp', |
michael@0 | 44 | 'SVGFELeafFrame.cpp', |
michael@0 | 45 | 'SVGFEUnstyledLeafFrame.cpp', |
michael@0 | 46 | 'SVGTextFrame.cpp', |
michael@0 | 47 | 'SVGViewFrame.cpp', |
michael@0 | 48 | ] |
michael@0 | 49 | |
michael@0 | 50 | FAIL_ON_WARNINGS = True |
michael@0 | 51 | |
michael@0 | 52 | FINAL_LIBRARY = 'gklayout' |
michael@0 | 53 | LOCAL_INCLUDES += [ |
michael@0 | 54 | '../../content/base/src', |
michael@0 | 55 | '../../content/svg/content/src', |
michael@0 | 56 | '../../widget', |
michael@0 | 57 | '../base', |
michael@0 | 58 | '../generic', |
michael@0 | 59 | '../style', |
michael@0 | 60 | '../xul', |
michael@0 | 61 | ] |
michael@0 | 62 | |
michael@0 | 63 | RESOURCE_FILES += [ |
michael@0 | 64 | 'svg.css', |
michael@0 | 65 | ] |
michael@0 | 66 |