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 | XPIDL_SOURCES += [ |
michael@0 | 8 | 'nsIContentPolicy.idl', |
michael@0 | 9 | 'nsIContentSecurityPolicy.idl', |
michael@0 | 10 | 'nsIDocumentEncoder.idl', |
michael@0 | 11 | 'nsIDOMDataChannel.idl', |
michael@0 | 12 | 'nsIDOMFile.idl', |
michael@0 | 13 | 'nsIDOMFileList.idl', |
michael@0 | 14 | 'nsIDOMFileReader.idl', |
michael@0 | 15 | 'nsIDOMFormData.idl', |
michael@0 | 16 | 'nsIDOMParser.idl', |
michael@0 | 17 | 'nsIDOMSerializer.idl', |
michael@0 | 18 | 'nsIDroppedLinkHandler.idl', |
michael@0 | 19 | 'nsIFrameLoader.idl', |
michael@0 | 20 | 'nsIImageLoadingContent.idl', |
michael@0 | 21 | 'nsIMessageManager.idl', |
michael@0 | 22 | 'nsIObjectLoadingContent.idl', |
michael@0 | 23 | 'nsIScriptLoaderObserver.idl', |
michael@0 | 24 | 'nsISelection.idl', |
michael@0 | 25 | 'nsISelectionController.idl', |
michael@0 | 26 | 'nsISelectionDisplay.idl', |
michael@0 | 27 | 'nsISelectionListener.idl', |
michael@0 | 28 | 'nsISelectionPrivate.idl', |
michael@0 | 29 | 'nsIXMLHttpRequest.idl', |
michael@0 | 30 | ] |
michael@0 | 31 | |
michael@0 | 32 | XPIDL_MODULE = 'content_base' |
michael@0 | 33 | |
michael@0 | 34 | EXPORTS += [ |
michael@0 | 35 | 'HTMLSplitOnSpacesTokenizer.h', |
michael@0 | 36 | 'mozFlushType.h', |
michael@0 | 37 | 'nsCaseTreatment.h', |
michael@0 | 38 | 'nsContentCID.h', |
michael@0 | 39 | 'nsContentCreatorFunctions.h', |
michael@0 | 40 | 'nsContentPolicyUtils.h', |
michael@0 | 41 | 'nsContentTypeParser.h', |
michael@0 | 42 | 'nsContentUtils.h', |
michael@0 | 43 | 'nsCopySupport.h', |
michael@0 | 44 | 'nsDeprecatedOperationList.h', |
michael@0 | 45 | 'nsDocElementCreatedNotificationRunner.h', |
michael@0 | 46 | 'nsDOMFile.h', |
michael@0 | 47 | 'nsHostObjectProtocolHandler.h', |
michael@0 | 48 | 'nsIAttribute.h', |
michael@0 | 49 | 'nsIContent.h', |
michael@0 | 50 | 'nsIContentInlines.h', |
michael@0 | 51 | 'nsIContentIterator.h', |
michael@0 | 52 | 'nsIContentSerializer.h', |
michael@0 | 53 | 'nsIDocument.h', |
michael@0 | 54 | 'nsIDocumentInlines.h', |
michael@0 | 55 | 'nsIDocumentObserver.h', |
michael@0 | 56 | 'nsIMutationObserver.h', |
michael@0 | 57 | 'nsINode.h', |
michael@0 | 58 | 'nsINodeInfo.h', |
michael@0 | 59 | 'nsINodeList.h', |
michael@0 | 60 | 'nsIScriptElement.h', |
michael@0 | 61 | 'nsIStyleSheetLinkingElement.h', |
michael@0 | 62 | 'nsLineBreaker.h', |
michael@0 | 63 | 'nsNameSpaceManager.h', |
michael@0 | 64 | 'nsReferencedElement.h', |
michael@0 | 65 | 'nsTreeSanitizer.h', |
michael@0 | 66 | 'nsViewportInfo.h', |
michael@0 | 67 | 'nsXMLNameSpaceMap.h', |
michael@0 | 68 | ] |
michael@0 | 69 | |
michael@0 | 70 | EXPORTS.mozilla.dom += [ |
michael@0 | 71 | 'DirectionalityUtils.h', |
michael@0 | 72 | 'Element.h', |
michael@0 | 73 | 'ElementInlines.h', |
michael@0 | 74 | 'FragmentOrElement.h', |
michael@0 | 75 | 'FromParser.h', |
michael@0 | 76 | ] |
michael@0 | 77 | |
michael@0 | 78 | EXPORTS.mozilla += [ |
michael@0 | 79 | 'CORSMode.h', |
michael@0 | 80 | ] |
michael@0 | 81 |