mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 14:52:16 +00:00
Bug 818246 - Part 4: Move XPIDLSRCS into moz.build (auto); rs=glandium
This is the result of running |mach mozbuild-migrate --list XPIDLSRCS SDK_XPIDLSRCS XPIDL_SOURCES| and reverting xpcom/sample/*.
This commit is contained in:
parent
c3338f7441
commit
c865547d94
@ -13,30 +13,6 @@ include $(DEPTH)/config/autoconf.mk
|
||||
MODULE = accessibility
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIAccessibleTypes.idl \
|
||||
nsIAccessibleRetrieval.idl \
|
||||
nsIAccessible.idl \
|
||||
nsIAccessibleApplication.idl \
|
||||
nsIAccessibleRelation.idl \
|
||||
nsIAccessibleRole.idl \
|
||||
nsIAccessibleStates.idl \
|
||||
nsIAccessibleDocument.idl \
|
||||
nsIAccessibleProvider.idl \
|
||||
nsIAccessibleSelectable.idl \
|
||||
nsIAccessibleCursorable.idl \
|
||||
nsIAccessibleEvent.idl \
|
||||
nsIAccessibleEditableText.idl \
|
||||
nsIAccessibleHyperLink.idl \
|
||||
nsIAccessibleHyperText.idl \
|
||||
nsIAccessiblePivot.idl \
|
||||
nsIAccessibleTable.idl \
|
||||
nsIAccessibleText.idl \
|
||||
nsIAccessibleValue.idl \
|
||||
nsIAccessibleImage.idl \
|
||||
nsIXBLAccessible.idl \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS = \
|
||||
nsIAccessibilityService.h \
|
||||
$(NULL)
|
||||
|
@ -5,3 +5,28 @@
|
||||
|
||||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
||||
DIRS += ['msaa', 'ia2']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIAccessible.idl',
|
||||
'nsIAccessibleApplication.idl',
|
||||
'nsIAccessibleCursorable.idl',
|
||||
'nsIAccessibleDocument.idl',
|
||||
'nsIAccessibleEditableText.idl',
|
||||
'nsIAccessibleEvent.idl',
|
||||
'nsIAccessibleHyperLink.idl',
|
||||
'nsIAccessibleHyperText.idl',
|
||||
'nsIAccessibleImage.idl',
|
||||
'nsIAccessiblePivot.idl',
|
||||
'nsIAccessibleProvider.idl',
|
||||
'nsIAccessibleRelation.idl',
|
||||
'nsIAccessibleRetrieval.idl',
|
||||
'nsIAccessibleRole.idl',
|
||||
'nsIAccessibleSelectable.idl',
|
||||
'nsIAccessibleStates.idl',
|
||||
'nsIAccessibleTable.idl',
|
||||
'nsIAccessibleText.idl',
|
||||
'nsIAccessibleTypes.idl',
|
||||
'nsIAccessibleValue.idl',
|
||||
'nsIXBLAccessible.idl',
|
||||
]
|
||||
|
||||
|
@ -11,10 +11,6 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = B2GComponents
|
||||
|
||||
XPIDLSRCS = \
|
||||
b2g.idl \
|
||||
$(NULL)
|
||||
|
||||
EXTRA_PP_COMPONENTS = \
|
||||
ActivitiesGlue.js \
|
||||
AlertsService.js \
|
||||
|
@ -4,3 +4,8 @@
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
TEST_DIRS += ['test']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'b2g.idl',
|
||||
]
|
||||
|
||||
|
@ -12,11 +12,6 @@ include $(DEPTH)/config/autoconf.mk
|
||||
MODULE = browsercomps
|
||||
XPIDL_MODULE = browsercompsbase
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIBrowserGlue.idl \
|
||||
nsIBrowserHandler.idl \
|
||||
$(NULL)
|
||||
|
||||
EXTRA_COMPONENTS = \
|
||||
BrowserComponents.manifest \
|
||||
$(NULL)
|
||||
|
@ -12,6 +12,4 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = browser-feeds
|
||||
|
||||
XPIDLSRCS = nsIFeedResultService.idl nsIWebContentConverterRegistrar.idl nsIFeedWriter.idl
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -3,3 +3,9 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIFeedResultService.idl',
|
||||
'nsIFeedWriter.idl',
|
||||
'nsIWebContentConverterRegistrar.idl',
|
||||
]
|
||||
|
||||
|
@ -11,7 +11,5 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = migration
|
||||
|
||||
XPIDLSRCS = nsIBrowserProfileMigrator.idl
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
@ -3,3 +3,7 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIBrowserProfileMigrator.idl',
|
||||
]
|
||||
|
||||
|
@ -25,3 +25,9 @@ if CONFIG['MOZ_SAFE_BROWSING']:
|
||||
|
||||
TEST_DIRS += ['test']
|
||||
DIRS += ['build']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIBrowserGlue.idl',
|
||||
'nsIBrowserHandler.idl',
|
||||
]
|
||||
|
||||
|
@ -12,9 +12,4 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = sessionstore
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsISessionStartup.idl \
|
||||
nsISessionStore.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -5,3 +5,9 @@
|
||||
|
||||
DIRS += ['src']
|
||||
TEST_DIRS += ['test']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsISessionStartup.idl',
|
||||
'nsISessionStore.idl',
|
||||
]
|
||||
|
||||
|
@ -12,8 +12,6 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = shellservice
|
||||
|
||||
XPIDLSRCS = nsIShellService.idl
|
||||
|
||||
ifeq ($(OS_ARCH),WINNT)
|
||||
XPIDLSRCS += nsIWindowsShellService.idl
|
||||
endif
|
||||
|
@ -3,3 +3,7 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIShellService.idl',
|
||||
]
|
||||
|
||||
|
@ -11,6 +11,4 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = fuel
|
||||
|
||||
XPIDLSRCS = fuelIApplication.idl
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -3,3 +3,7 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'fuelIApplication.idl',
|
||||
]
|
||||
|
||||
|
@ -13,11 +13,6 @@ include $(topsrcdir)/config/config.mk
|
||||
# metro/components.manifest
|
||||
MODULE = components
|
||||
|
||||
XPIDLSRCS = \
|
||||
SessionStore.idl \
|
||||
LoginManagerPrompter.idl \
|
||||
$(NULL)
|
||||
|
||||
EXTRA_PP_COMPONENTS = \
|
||||
components.manifest \
|
||||
AboutRedirector.js \
|
||||
|
@ -3,3 +3,8 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'LoginManagerPrompter.idl',
|
||||
'SessionStore.idl',
|
||||
]
|
||||
|
||||
|
@ -13,11 +13,5 @@ include $(DEPTH)/config/autoconf.mk
|
||||
MODULE = caps
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIScriptSecurityManager.idl \
|
||||
nsIPrincipal.idl \
|
||||
nsISecurityCheckedComponent.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
@ -3,3 +3,9 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIPrincipal.idl',
|
||||
'nsIScriptSecurityManager.idl',
|
||||
'nsISecurityCheckedComponent.idl',
|
||||
]
|
||||
|
||||
|
@ -11,9 +11,4 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = chrome
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIChromeRegistry.idl \
|
||||
nsIToolkitChromeRegistry.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -3,3 +3,8 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIChromeRegistry.idl',
|
||||
'nsIToolkitChromeRegistry.idl',
|
||||
]
|
||||
|
||||
|
@ -59,33 +59,5 @@ EXPORTS_mozilla = \
|
||||
CORSMode.h \
|
||||
$(NULL)
|
||||
|
||||
SDK_XPIDLSRCS = \
|
||||
nsISelection.idl \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIContentPolicy.idl \
|
||||
nsIDocumentEncoder.idl \
|
||||
nsIDOMDataChannel.idl \
|
||||
nsIDOMFile.idl \
|
||||
nsIDOMFileReader.idl \
|
||||
nsIDOMFileList.idl \
|
||||
nsIDOMFormData.idl \
|
||||
nsIDOMParser.idl \
|
||||
nsIDOMSerializer.idl \
|
||||
nsISelectionController.idl \
|
||||
nsISelectionDisplay.idl \
|
||||
nsISelectionListener.idl \
|
||||
nsISelectionPrivate.idl \
|
||||
nsIScriptLoaderObserver.idl \
|
||||
nsIDroppedLinkHandler.idl \
|
||||
nsIImageLoadingContent.idl \
|
||||
nsIObjectLoadingContent.idl \
|
||||
nsIFrameLoader.idl \
|
||||
nsIXMLHttpRequest.idl \
|
||||
nsIContentSecurityPolicy.idl \
|
||||
nsIMessageManager.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
@ -3,3 +3,28 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIContentPolicy.idl',
|
||||
'nsIContentSecurityPolicy.idl',
|
||||
'nsIDOMDataChannel.idl',
|
||||
'nsIDOMFile.idl',
|
||||
'nsIDOMFileList.idl',
|
||||
'nsIDOMFileReader.idl',
|
||||
'nsIDOMFormData.idl',
|
||||
'nsIDOMParser.idl',
|
||||
'nsIDOMSerializer.idl',
|
||||
'nsIDocumentEncoder.idl',
|
||||
'nsIDroppedLinkHandler.idl',
|
||||
'nsIFrameLoader.idl',
|
||||
'nsIImageLoadingContent.idl',
|
||||
'nsIMessageManager.idl',
|
||||
'nsIObjectLoadingContent.idl',
|
||||
'nsIScriptLoaderObserver.idl',
|
||||
'nsISelection.idl',
|
||||
'nsISelectionController.idl',
|
||||
'nsISelectionDisplay.idl',
|
||||
'nsISelectionListener.idl',
|
||||
'nsISelectionPrivate.idl',
|
||||
'nsIXMLHttpRequest.idl',
|
||||
]
|
||||
|
||||
|
@ -29,8 +29,4 @@ EXPORTS_mozilla/ipc = \
|
||||
DocumentRendererNativeIDParent.h \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsICanvasGLPrivate.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -3,3 +3,7 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsICanvasGLPrivate.idl',
|
||||
]
|
||||
|
||||
|
@ -30,9 +30,5 @@ EXPORTS_mozilla/dom = \
|
||||
EventTarget.h \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIEventListenerService.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
@ -3,3 +3,7 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIEventListenerService.idl',
|
||||
]
|
||||
|
||||
|
@ -13,13 +13,6 @@ include $(DEPTH)/config/autoconf.mk
|
||||
MODULE = content
|
||||
XPIDL_MODULE = content_html
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIFormSubmitObserver.idl \
|
||||
nsIPhonetic.idl \
|
||||
nsIHTMLMenu.idl \
|
||||
nsIMenuBuilder.idl \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS = \
|
||||
nsIConstraintValidation.h \
|
||||
nsIFormControl.h \
|
||||
|
@ -3,3 +3,10 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIFormSubmitObserver.idl',
|
||||
'nsIHTMLMenu.idl',
|
||||
'nsIMenuBuilder.idl',
|
||||
'nsIPhonetic.idl',
|
||||
]
|
||||
|
||||
|
@ -13,8 +13,4 @@ include $(DEPTH)/config/autoconf.mk
|
||||
MODULE = content
|
||||
XPIDL_MODULE = content_htmldoc
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIImageDocument.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -3,3 +3,7 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIImageDocument.idl',
|
||||
]
|
||||
|
||||
|
@ -16,15 +16,5 @@ EXPORTS = \
|
||||
nsIDocumentTransformer.h \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIXSLTException.idl \
|
||||
nsIXSLTProcessor.idl \
|
||||
nsIXSLTProcessorPrivate.idl \
|
||||
txIFunctionEvaluationContext.idl \
|
||||
txINodeSet.idl \
|
||||
txIEXSLTRegExFunctions.idl \
|
||||
txIXPathObject.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
@ -3,3 +3,13 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIXSLTException.idl',
|
||||
'nsIXSLTProcessor.idl',
|
||||
'nsIXSLTProcessorPrivate.idl',
|
||||
'txIEXSLTRegExFunctions.idl',
|
||||
'txIFunctionEvaluationContext.idl',
|
||||
'txINodeSet.idl',
|
||||
'txIXPathObject.idl',
|
||||
]
|
||||
|
||||
|
@ -13,11 +13,6 @@ include $(DEPTH)/config/autoconf.mk
|
||||
MODULE = xuldoc
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIController.idl \
|
||||
nsIControllers.idl \
|
||||
$(NULL)
|
||||
|
||||
ifdef MOZ_XUL
|
||||
XPIDLSRCS += \
|
||||
nsIXULOverlayProvider.idl \
|
||||
|
@ -3,3 +3,8 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIController.idl',
|
||||
'nsIControllers.idl',
|
||||
]
|
||||
|
||||
|
@ -12,14 +12,5 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = xultmpl
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIXULSortService.idl \
|
||||
nsIXULTemplateBuilder.idl \
|
||||
nsIXULBuilderListener.idl \
|
||||
nsIXULTemplateQueryProcessor.idl \
|
||||
nsIXULTemplateResult.idl \
|
||||
nsIXULTemplateRuleFilter.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
@ -3,3 +3,12 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIXULBuilderListener.idl',
|
||||
'nsIXULSortService.idl',
|
||||
'nsIXULTemplateBuilder.idl',
|
||||
'nsIXULTemplateQueryProcessor.idl',
|
||||
'nsIXULTemplateResult.idl',
|
||||
'nsIXULTemplateRuleFilter.idl',
|
||||
]
|
||||
|
||||
|
@ -19,38 +19,6 @@ ifdef MOZ_TOOLKIT_SEARCH
|
||||
DEFINES += -DMOZ_TOOLKIT_SEARCH
|
||||
endif
|
||||
|
||||
SDK_XPIDLSRCS = \
|
||||
nsIClipboardCommands.idl \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsCDefaultURIFixup.idl \
|
||||
nsIDocShell.idl \
|
||||
nsIDocShellLoadInfo.idl \
|
||||
nsIDocShellTreeItem.idl \
|
||||
nsIDocShellTreeNode.idl \
|
||||
nsIDocShellTreeOwner.idl \
|
||||
nsIDocShellHistory.idl \
|
||||
nsIGlobalHistory2.idl \
|
||||
nsIMarkupDocumentViewer.idl \
|
||||
nsIScrollable.idl \
|
||||
nsITextScroll.idl \
|
||||
nsIDocCharset.idl \
|
||||
nsIWebNavigation.idl \
|
||||
nsIWebNavigationInfo.idl \
|
||||
nsIContentViewer.idl \
|
||||
nsIContentViewerEdit.idl \
|
||||
nsIContentViewerFile.idl \
|
||||
nsIURIFixup.idl \
|
||||
nsIWebPageDescriptor.idl \
|
||||
nsIDownloadHistory.idl \
|
||||
nsILoadContext.idl \
|
||||
nsIRefreshURI.idl \
|
||||
nsIContentViewerContainer.idl \
|
||||
nsIDocumentLoaderFactory.idl \
|
||||
nsIPrivacyTransitionObserver.idl \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS = \
|
||||
nsDocShellLoadTypes.h \
|
||||
nsILinkHandler.h \
|
||||
|
@ -3,3 +3,32 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsCDefaultURIFixup.idl',
|
||||
'nsIClipboardCommands.idl',
|
||||
'nsIContentViewer.idl',
|
||||
'nsIContentViewerContainer.idl',
|
||||
'nsIContentViewerEdit.idl',
|
||||
'nsIContentViewerFile.idl',
|
||||
'nsIDocCharset.idl',
|
||||
'nsIDocShell.idl',
|
||||
'nsIDocShellHistory.idl',
|
||||
'nsIDocShellLoadInfo.idl',
|
||||
'nsIDocShellTreeItem.idl',
|
||||
'nsIDocShellTreeNode.idl',
|
||||
'nsIDocShellTreeOwner.idl',
|
||||
'nsIDocumentLoaderFactory.idl',
|
||||
'nsIDownloadHistory.idl',
|
||||
'nsIGlobalHistory2.idl',
|
||||
'nsILoadContext.idl',
|
||||
'nsIMarkupDocumentViewer.idl',
|
||||
'nsIPrivacyTransitionObserver.idl',
|
||||
'nsIRefreshURI.idl',
|
||||
'nsIScrollable.idl',
|
||||
'nsITextScroll.idl',
|
||||
'nsIURIFixup.idl',
|
||||
'nsIWebNavigation.idl',
|
||||
'nsIWebNavigationInfo.idl',
|
||||
'nsIWebPageDescriptor.idl',
|
||||
]
|
||||
|
||||
|
@ -13,19 +13,5 @@ include $(DEPTH)/config/autoconf.mk
|
||||
MODULE = shistory
|
||||
GRE_MODULE = 1
|
||||
|
||||
SDK_XPIDLSRCS = \
|
||||
nsIHistoryEntry.idl \
|
||||
nsISHistory.idl \
|
||||
nsISHistoryListener.idl \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsISHEntry.idl \
|
||||
nsISHContainer.idl \
|
||||
nsISHTransaction.idl \
|
||||
nsISHistoryInternal.idl \
|
||||
nsIBFCacheEntry.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
@ -3,3 +3,14 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIBFCacheEntry.idl',
|
||||
'nsIHistoryEntry.idl',
|
||||
'nsISHContainer.idl',
|
||||
'nsISHEntry.idl',
|
||||
'nsISHTransaction.idl',
|
||||
'nsISHistory.idl',
|
||||
'nsISHistoryInternal.idl',
|
||||
'nsISHistoryListener.idl',
|
||||
]
|
||||
|
||||
|
@ -11,15 +11,6 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
XPIDL_MODULE = dom_activities
|
||||
|
||||
XPIDLSRCS = nsIDOMActivity.idl \
|
||||
nsIDOMActivityOptions.idl \
|
||||
nsIDOMActivityHandlerDescription.idl \
|
||||
nsIDOMActivityRequestHandler.idl \
|
||||
nsIDOMNavigatorActivities.idl \
|
||||
nsIActivityProxy.idl \
|
||||
nsIActivityUIGlue.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,13 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIActivityProxy.idl',
|
||||
'nsIActivityUIGlue.idl',
|
||||
'nsIDOMActivity.idl',
|
||||
'nsIDOMActivityHandlerDescription.idl',
|
||||
'nsIDOMActivityOptions.idl',
|
||||
'nsIDOMActivityRequestHandler.idl',
|
||||
'nsIDOMNavigatorActivities.idl',
|
||||
]
|
||||
|
||||
|
@ -31,11 +31,6 @@ EXTRA_JS_MODULES = \
|
||||
AlarmService.jsm \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMAlarmsManager.idl \
|
||||
nsIAlarmHalService.idl \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS_mozilla/dom/alarm = \
|
||||
AlarmHalService.h \
|
||||
$(NULL)
|
||||
|
@ -4,3 +4,9 @@
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
TEST_DIRS += ['test']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIAlarmHalService.idl',
|
||||
'nsIDOMAlarmsManager.idl',
|
||||
]
|
||||
|
||||
|
@ -44,11 +44,6 @@ CPPSRCS += \
|
||||
AudioChannelAgent.cpp \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIAudioChannelAgent.idl \
|
||||
$(NULL)
|
||||
|
||||
|
||||
include $(topsrcdir)/config/config.mk
|
||||
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -4,3 +4,8 @@
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
TEST_TOOL_DIRS += ['tests']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIAudioChannelAgent.idl',
|
||||
]
|
||||
|
||||
|
@ -33,15 +33,6 @@ EXTRA_JS_MODULES += \
|
||||
ObjectWrapper.jsm \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMDOMError.idl \
|
||||
nsIDOMDOMRequest.idl \
|
||||
nsIDOMDOMCursor.idl \
|
||||
nsIEntropyCollector.idl \
|
||||
nsIScriptChannel.idl \
|
||||
nsISiteSpecificUserAgent.idl \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS = \
|
||||
nsDOMCID.h \
|
||||
nsDOMClassInfoClasses.h \
|
||||
|
@ -4,3 +4,13 @@
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
TEST_DIRS += ['test']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMDOMCursor.idl',
|
||||
'nsIDOMDOMError.idl',
|
||||
'nsIDOMDOMRequest.idl',
|
||||
'nsIEntropyCollector.idl',
|
||||
'nsIScriptChannel.idl',
|
||||
'nsISiteSpecificUserAgent.idl',
|
||||
]
|
||||
|
||||
|
@ -32,10 +32,6 @@ LOCAL_INCLUDES = \
|
||||
-I$(topsrcdir)/content/events/src \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsINavigatorBattery.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/config.mk
|
||||
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -4,3 +4,8 @@
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
TEST_DIRS += ['test']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsINavigatorBattery.idl',
|
||||
]
|
||||
|
||||
|
@ -18,11 +18,6 @@ FAIL_ON_WARNINGS := 1
|
||||
|
||||
include $(topsrcdir)/dom/dom-config.mk
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIOpenWindowEventDetail.idl \
|
||||
nsIAsyncScrollEventDetail.idl \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS = \
|
||||
nsOpenWindowEventDetail.h \
|
||||
nsAsyncScrollEventDetail.h \
|
||||
|
@ -4,3 +4,9 @@
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
TEST_DIRS += ['mochitest']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIAsyncScrollEventDetail.idl',
|
||||
'nsIOpenWindowEventDetail.idl',
|
||||
]
|
||||
|
||||
|
@ -53,11 +53,6 @@ CPPSRCS += \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMNavigatorCamera.idl \
|
||||
nsIDOMCameraManager.idl \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS = \
|
||||
CameraCommon.h \
|
||||
DOMCameraManager.h \
|
||||
|
@ -3,3 +3,8 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMCameraManager.idl',
|
||||
'nsIDOMNavigatorCamera.idl',
|
||||
]
|
||||
|
||||
|
@ -13,14 +13,6 @@ XPIDL_MODULE = dom_cellbroadcast
|
||||
|
||||
include $(topsrcdir)/dom/dom-config.mk
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsICellBroadcastProvider.idl \
|
||||
nsIDOMMozCellBroadcast.idl \
|
||||
nsIDOMMozCellBroadcastEvent.idl \
|
||||
nsIDOMMozCellBroadcastMessage.idl \
|
||||
nsINavigatorCellBroadcast.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,11 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsICellBroadcastProvider.idl',
|
||||
'nsIDOMMozCellBroadcast.idl',
|
||||
'nsIDOMMozCellBroadcastEvent.idl',
|
||||
'nsIDOMMozCellBroadcastMessage.idl',
|
||||
'nsINavigatorCellBroadcast.idl',
|
||||
]
|
||||
|
||||
|
@ -60,13 +60,6 @@ EXPORTS_mozilla/dom/file = \
|
||||
ArchiveRequest.h \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMFileHandle.idl \
|
||||
nsIDOMFileRequest.idl \
|
||||
nsIDOMLockedFile.idl \
|
||||
nsIDOMArchiveRequest.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -4,3 +4,11 @@
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
TEST_DIRS += ['test']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMArchiveRequest.idl',
|
||||
'nsIDOMFileHandle.idl',
|
||||
'nsIDOMFileRequest.idl',
|
||||
'nsIDOMLockedFile.idl',
|
||||
]
|
||||
|
||||
|
@ -22,11 +22,6 @@ CPPSRCS += \
|
||||
nsFMRadioSettings.cpp \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMFMRadio.idl \
|
||||
nsIFMRadio.idl \
|
||||
$(NULL)
|
||||
|
||||
EXTRA_COMPONENTS = \
|
||||
DOMFMRadioChild.js \
|
||||
DOMFMRadio.manifest \
|
||||
|
@ -3,3 +3,8 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMFMRadio.idl',
|
||||
'nsIFMRadio.idl',
|
||||
]
|
||||
|
||||
|
@ -13,13 +13,6 @@ XPIDL_MODULE = dom_icc
|
||||
|
||||
include $(topsrcdir)/dom/dom-config.mk
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMIccManager.idl \
|
||||
SimToolKit.idl \
|
||||
nsIDOMICCCardLockErrorEvent.idl \
|
||||
nsIIccProvider.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
XPIDL_FLAGS += \
|
||||
-I$(topsrcdir)/dom/interfaces/base \
|
||||
|
@ -3,3 +3,10 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'SimToolKit.idl',
|
||||
'nsIDOMICCCardLockErrorEvent.idl',
|
||||
'nsIDOMIccManager.idl',
|
||||
'nsIIccProvider.idl',
|
||||
]
|
||||
|
||||
|
@ -79,22 +79,6 @@ DEFINES += -D_IMPL_NS_LAYOUT
|
||||
|
||||
# Make sure to quickstub as much as possible here! See
|
||||
# js/xpconnect/src/dom_quickstubs.qsconf.
|
||||
XPIDLSRCS = \
|
||||
nsIIDBCursor.idl \
|
||||
nsIIDBCursorWithValue.idl \
|
||||
nsIIDBDatabase.idl \
|
||||
nsIIDBFactory.idl \
|
||||
nsIIDBFileHandle.idl \
|
||||
nsIIDBIndex.idl \
|
||||
nsIIDBKeyRange.idl \
|
||||
nsIIDBObjectStore.idl \
|
||||
nsIIDBRequest.idl \
|
||||
nsIIDBTransaction.idl \
|
||||
nsIIDBVersionChangeEvent.idl \
|
||||
nsIIDBOpenDBRequest.idl \
|
||||
nsIIndexedDatabaseManager.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/config.mk
|
||||
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -5,3 +5,20 @@
|
||||
|
||||
DIRS += ['ipc']
|
||||
TEST_DIRS += ['test']
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIIDBCursor.idl',
|
||||
'nsIIDBCursorWithValue.idl',
|
||||
'nsIIDBDatabase.idl',
|
||||
'nsIIDBFactory.idl',
|
||||
'nsIIDBFileHandle.idl',
|
||||
'nsIIDBIndex.idl',
|
||||
'nsIIDBKeyRange.idl',
|
||||
'nsIIDBObjectStore.idl',
|
||||
'nsIIDBOpenDBRequest.idl',
|
||||
'nsIIDBRequest.idl',
|
||||
'nsIIDBTransaction.idl',
|
||||
'nsIIDBVersionChangeEvent.idl',
|
||||
'nsIIndexedDatabaseManager.idl',
|
||||
]
|
||||
|
||||
|
@ -14,15 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_apps
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
mozIApplication.idl \
|
||||
mozIApplicationClearPrivateDataParams.idl \
|
||||
nsIDOMApplicationRegistry.idl \
|
||||
nsIDOMApplicationRegistry2.idl \
|
||||
nsIAppsService.idl \
|
||||
nsIDOMMozApplicationEvent.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,12 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'mozIApplication.idl',
|
||||
'mozIApplicationClearPrivateDataParams.idl',
|
||||
'nsIAppsService.idl',
|
||||
'nsIDOMApplicationRegistry.idl',
|
||||
'nsIDOMApplicationRegistry2.idl',
|
||||
'nsIDOMMozApplicationEvent.idl',
|
||||
]
|
||||
|
||||
|
@ -14,49 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_base
|
||||
GRE_MODULE = 1
|
||||
|
||||
SDK_XPIDLSRCS = \
|
||||
domstubs.idl \
|
||||
nsIDOMBarProp.idl \
|
||||
nsIDOMWindow.idl \
|
||||
nsIDOMWindowCollection.idl \
|
||||
nsIDOMWindowUtils.idl \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIFrameRequestCallback.idl \
|
||||
nsIBrowserDOMWindow.idl \
|
||||
nsIContentPermissionPrompt.idl \
|
||||
nsIContentPrefService.idl \
|
||||
nsIContentPrefService2.idl \
|
||||
nsIContentURIGrouper.idl \
|
||||
nsIDOMClientInformation.idl \
|
||||
nsIDOMConstructor.idl \
|
||||
nsIDOMCRMFObject.idl \
|
||||
nsIDOMHistory.idl \
|
||||
nsIDOMLocation.idl \
|
||||
nsIDOMMediaQueryList.idl \
|
||||
nsIDOMMimeType.idl \
|
||||
nsIDOMMimeTypeArray.idl \
|
||||
nsIDOMNavigator.idl \
|
||||
nsIDOMPkcs11.idl \
|
||||
nsIDOMPlugin.idl \
|
||||
nsIDOMPluginArray.idl \
|
||||
nsIDOMScreen.idl \
|
||||
nsIDOMJSWindow.idl \
|
||||
nsIDOMModalContentWindow.idl \
|
||||
nsIDOMChromeWindow.idl \
|
||||
nsIDOMClientRect.idl \
|
||||
nsIDOMClientRectList.idl \
|
||||
nsIFocusManager.idl \
|
||||
nsIQueryContentEventResult.idl \
|
||||
nsITabChild.idl \
|
||||
nsITabParent.idl \
|
||||
nsIDOMGlobalPropertyInitializer.idl \
|
||||
nsIDOMGlobalObjectConstructor.idl \
|
||||
nsIStructuredCloneContainer.idl \
|
||||
nsIIdleObserver.idl \
|
||||
$(NULL)
|
||||
|
||||
ifdef MOZ_DISABLE_CRYPTOLEGACY
|
||||
XPIDLSRCS += \
|
||||
nsIDOMCrypto.idl \
|
||||
|
@ -3,3 +3,43 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'domstubs.idl',
|
||||
'nsIBrowserDOMWindow.idl',
|
||||
'nsIContentPermissionPrompt.idl',
|
||||
'nsIContentPrefService.idl',
|
||||
'nsIContentPrefService2.idl',
|
||||
'nsIContentURIGrouper.idl',
|
||||
'nsIDOMBarProp.idl',
|
||||
'nsIDOMCRMFObject.idl',
|
||||
'nsIDOMChromeWindow.idl',
|
||||
'nsIDOMClientInformation.idl',
|
||||
'nsIDOMClientRect.idl',
|
||||
'nsIDOMClientRectList.idl',
|
||||
'nsIDOMConstructor.idl',
|
||||
'nsIDOMGlobalObjectConstructor.idl',
|
||||
'nsIDOMGlobalPropertyInitializer.idl',
|
||||
'nsIDOMHistory.idl',
|
||||
'nsIDOMJSWindow.idl',
|
||||
'nsIDOMLocation.idl',
|
||||
'nsIDOMMediaQueryList.idl',
|
||||
'nsIDOMMimeType.idl',
|
||||
'nsIDOMMimeTypeArray.idl',
|
||||
'nsIDOMModalContentWindow.idl',
|
||||
'nsIDOMNavigator.idl',
|
||||
'nsIDOMPkcs11.idl',
|
||||
'nsIDOMPlugin.idl',
|
||||
'nsIDOMPluginArray.idl',
|
||||
'nsIDOMScreen.idl',
|
||||
'nsIDOMWindow.idl',
|
||||
'nsIDOMWindowCollection.idl',
|
||||
'nsIDOMWindowUtils.idl',
|
||||
'nsIFocusManager.idl',
|
||||
'nsIFrameRequestCallback.idl',
|
||||
'nsIIdleObserver.idl',
|
||||
'nsIQueryContentEventResult.idl',
|
||||
'nsIStructuredCloneContainer.idl',
|
||||
'nsITabChild.idl',
|
||||
'nsITabParent.idl',
|
||||
]
|
||||
|
||||
|
@ -14,9 +14,4 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_canvas
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMCanvasRenderingContext2D.idl \
|
||||
nsIDOMWebGLRenderingContext.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -3,3 +3,8 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMCanvasRenderingContext2D.idl',
|
||||
'nsIDOMWebGLRenderingContext.idl',
|
||||
]
|
||||
|
||||
|
@ -13,12 +13,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_contacts
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMContactProperties.idl \
|
||||
nsIDOMContactManager.idl \
|
||||
nsIDOMMozContactChangeEvent.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,9 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMContactManager.idl',
|
||||
'nsIDOMContactProperties.idl',
|
||||
'nsIDOMMozContactChangeEvent.idl',
|
||||
]
|
||||
|
||||
|
@ -14,32 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_core
|
||||
GRE_MODULE = 1
|
||||
|
||||
SDK_XPIDLSRCS = \
|
||||
nsIDOMAttr.idl \
|
||||
nsIDOMCDATASection.idl \
|
||||
nsIDOMCharacterData.idl \
|
||||
nsIDOMComment.idl \
|
||||
nsIDOMDOMException.idl \
|
||||
nsIDOMDocument.idl \
|
||||
nsIDOMDocumentFragment.idl \
|
||||
nsIDOMDocumentType.idl \
|
||||
nsIDOMElement.idl \
|
||||
nsIDOMMozNamedAttrMap.idl \
|
||||
nsIDOMNode.idl \
|
||||
nsIDOMNodeList.idl \
|
||||
nsIDOMProcessingInstruction.idl \
|
||||
nsIDOMText.idl \
|
||||
nsIDocumentRegister.idl \
|
||||
$(NULL)
|
||||
XPIDLSRCS = \
|
||||
nsIDOMDOMStringList.idl \
|
||||
nsIDOMXMLDocument.idl \
|
||||
nsIDOMUserDataHandler.idl \
|
||||
nsIDOMNSEditableElement.idl \
|
||||
nsIDOMNodeSelector.idl \
|
||||
nsIInlineEventHandlers.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,27 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMAttr.idl',
|
||||
'nsIDOMCDATASection.idl',
|
||||
'nsIDOMCharacterData.idl',
|
||||
'nsIDOMComment.idl',
|
||||
'nsIDOMDOMException.idl',
|
||||
'nsIDOMDOMStringList.idl',
|
||||
'nsIDOMDocument.idl',
|
||||
'nsIDOMDocumentFragment.idl',
|
||||
'nsIDOMDocumentType.idl',
|
||||
'nsIDOMElement.idl',
|
||||
'nsIDOMMozNamedAttrMap.idl',
|
||||
'nsIDOMNSEditableElement.idl',
|
||||
'nsIDOMNode.idl',
|
||||
'nsIDOMNodeList.idl',
|
||||
'nsIDOMNodeSelector.idl',
|
||||
'nsIDOMProcessingInstruction.idl',
|
||||
'nsIDOMText.idl',
|
||||
'nsIDOMUserDataHandler.idl',
|
||||
'nsIDOMXMLDocument.idl',
|
||||
'nsIDocumentRegister.idl',
|
||||
'nsIInlineEventHandlers.idl',
|
||||
]
|
||||
|
||||
|
@ -14,35 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_css
|
||||
GRE_MODULE = 1
|
||||
|
||||
SDK_XPIDLSRCS = \
|
||||
nsIDOMCSSPrimitiveValue.idl \
|
||||
nsIDOMCSSRule.idl \
|
||||
nsIDOMCSSRuleList.idl \
|
||||
nsIDOMCSSStyleDeclaration.idl \
|
||||
nsIDOMCSSStyleSheet.idl \
|
||||
nsIDOMCSSValue.idl \
|
||||
nsIDOMCSSValueList.idl \
|
||||
nsIDOMElementCSSInlineStyle.idl \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMCSSCharsetRule.idl \
|
||||
nsIDOMCSSConditionRule.idl \
|
||||
nsIDOMCSSFontFaceRule.idl \
|
||||
nsIDOMCSSGroupingRule.idl \
|
||||
nsIDOMCSSImportRule.idl \
|
||||
nsIDOMCSSMediaRule.idl \
|
||||
nsIDOMCSSMozDocumentRule.idl \
|
||||
nsIDOMCSSSupportsRule.idl \
|
||||
nsIDOMMozCSSKeyframeRule.idl \
|
||||
nsIDOMMozCSSKeyframesRule.idl \
|
||||
nsIDOMCSSPageRule.idl \
|
||||
nsIDOMCSSStyleRule.idl \
|
||||
nsIDOMCSSUnknownRule.idl \
|
||||
nsIDOMCounter.idl \
|
||||
nsIDOMRect.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,29 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMCSSCharsetRule.idl',
|
||||
'nsIDOMCSSConditionRule.idl',
|
||||
'nsIDOMCSSFontFaceRule.idl',
|
||||
'nsIDOMCSSGroupingRule.idl',
|
||||
'nsIDOMCSSImportRule.idl',
|
||||
'nsIDOMCSSMediaRule.idl',
|
||||
'nsIDOMCSSMozDocumentRule.idl',
|
||||
'nsIDOMCSSPageRule.idl',
|
||||
'nsIDOMCSSPrimitiveValue.idl',
|
||||
'nsIDOMCSSRule.idl',
|
||||
'nsIDOMCSSRuleList.idl',
|
||||
'nsIDOMCSSStyleDeclaration.idl',
|
||||
'nsIDOMCSSStyleRule.idl',
|
||||
'nsIDOMCSSStyleSheet.idl',
|
||||
'nsIDOMCSSSupportsRule.idl',
|
||||
'nsIDOMCSSUnknownRule.idl',
|
||||
'nsIDOMCSSValue.idl',
|
||||
'nsIDOMCSSValueList.idl',
|
||||
'nsIDOMCounter.idl',
|
||||
'nsIDOMElementCSSInlineStyle.idl',
|
||||
'nsIDOMMozCSSKeyframeRule.idl',
|
||||
'nsIDOMMozCSSKeyframesRule.idl',
|
||||
'nsIDOMRect.idl',
|
||||
]
|
||||
|
||||
|
@ -17,12 +17,6 @@ FORCE_STATIC_LIB = 1
|
||||
|
||||
include $(topsrcdir)/dom/dom-config.mk
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMDeviceStorage.idl \
|
||||
nsIDOMDeviceStorageCursor.idl \
|
||||
nsIDOMNavigatorDeviceStorage.idl \
|
||||
nsIDOMDeviceStorageChangeEvent.idl
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
||||
|
@ -3,3 +3,10 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMDeviceStorage.idl',
|
||||
'nsIDOMDeviceStorageChangeEvent.idl',
|
||||
'nsIDOMDeviceStorageCursor.idl',
|
||||
'nsIDOMNavigatorDeviceStorage.idl',
|
||||
]
|
||||
|
||||
|
@ -14,55 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_events
|
||||
GRE_MODULE = 1
|
||||
|
||||
SDK_XPIDLSRCS = \
|
||||
nsIDOMEvent.idl \
|
||||
nsIDOMEventTarget.idl \
|
||||
nsIDOMEventListener.idl \
|
||||
nsIDOMMouseEvent.idl \
|
||||
nsIDOMMouseScrollEvent.idl \
|
||||
nsIDOMUIEvent.idl \
|
||||
nsIDOMProgressEvent.idl \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMNSEvent.idl \
|
||||
nsIDOMDataContainerEvent.idl \
|
||||
nsIDOMKeyEvent.idl \
|
||||
nsIDOMMutationEvent.idl \
|
||||
nsIDOMDragEvent.idl \
|
||||
nsIDOMDataTransfer.idl \
|
||||
nsIDOMDOMTransactionEvent.idl \
|
||||
nsIDOMPopupBlockedEvent.idl \
|
||||
nsIDOMBeforeUnloadEvent.idl \
|
||||
nsIDOMSmartCardEvent.idl \
|
||||
nsIDOMPageTransitionEvent.idl \
|
||||
nsIDOMCommandEvent.idl \
|
||||
nsIDOMMessageEvent.idl \
|
||||
nsIDOMNotifyPaintEvent.idl \
|
||||
nsIDOMNotifyAudioAvailableEvent.idl \
|
||||
nsIDOMPaintRequest.idl \
|
||||
nsIDOMPaintRequestList.idl \
|
||||
nsIDOMSimpleGestureEvent.idl \
|
||||
nsIDOMDeviceLightEvent.idl \
|
||||
nsIDOMDeviceProximityEvent.idl \
|
||||
nsIDOMUserProximityEvent.idl \
|
||||
nsIDOMDeviceOrientationEvent.idl \
|
||||
nsIDOMDeviceMotionEvent.idl \
|
||||
nsIDOMElementReplaceEvent.idl \
|
||||
nsIDOMScrollAreaEvent.idl \
|
||||
nsIDOMTransitionEvent.idl \
|
||||
nsIDOMAnimationEvent.idl \
|
||||
nsIDOMPopStateEvent.idl \
|
||||
nsIDOMCloseEvent.idl \
|
||||
nsIDOMTouchEvent.idl \
|
||||
nsIDOMHashChangeEvent.idl \
|
||||
nsIDOMCustomEvent.idl \
|
||||
nsIDOMCompositionEvent.idl \
|
||||
nsIDOMWheelEvent.idl \
|
||||
nsIDOMBlobEvent.idl \
|
||||
nsIDOMClipboardEvent.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,49 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMAnimationEvent.idl',
|
||||
'nsIDOMBeforeUnloadEvent.idl',
|
||||
'nsIDOMBlobEvent.idl',
|
||||
'nsIDOMClipboardEvent.idl',
|
||||
'nsIDOMCloseEvent.idl',
|
||||
'nsIDOMCommandEvent.idl',
|
||||
'nsIDOMCompositionEvent.idl',
|
||||
'nsIDOMCustomEvent.idl',
|
||||
'nsIDOMDOMTransactionEvent.idl',
|
||||
'nsIDOMDataContainerEvent.idl',
|
||||
'nsIDOMDataTransfer.idl',
|
||||
'nsIDOMDeviceLightEvent.idl',
|
||||
'nsIDOMDeviceMotionEvent.idl',
|
||||
'nsIDOMDeviceOrientationEvent.idl',
|
||||
'nsIDOMDeviceProximityEvent.idl',
|
||||
'nsIDOMDragEvent.idl',
|
||||
'nsIDOMElementReplaceEvent.idl',
|
||||
'nsIDOMEvent.idl',
|
||||
'nsIDOMEventListener.idl',
|
||||
'nsIDOMEventTarget.idl',
|
||||
'nsIDOMHashChangeEvent.idl',
|
||||
'nsIDOMKeyEvent.idl',
|
||||
'nsIDOMMessageEvent.idl',
|
||||
'nsIDOMMouseEvent.idl',
|
||||
'nsIDOMMouseScrollEvent.idl',
|
||||
'nsIDOMMutationEvent.idl',
|
||||
'nsIDOMNSEvent.idl',
|
||||
'nsIDOMNotifyAudioAvailableEvent.idl',
|
||||
'nsIDOMNotifyPaintEvent.idl',
|
||||
'nsIDOMPageTransitionEvent.idl',
|
||||
'nsIDOMPaintRequest.idl',
|
||||
'nsIDOMPaintRequestList.idl',
|
||||
'nsIDOMPopStateEvent.idl',
|
||||
'nsIDOMPopupBlockedEvent.idl',
|
||||
'nsIDOMProgressEvent.idl',
|
||||
'nsIDOMScrollAreaEvent.idl',
|
||||
'nsIDOMSimpleGestureEvent.idl',
|
||||
'nsIDOMSmartCardEvent.idl',
|
||||
'nsIDOMTouchEvent.idl',
|
||||
'nsIDOMTransitionEvent.idl',
|
||||
'nsIDOMUIEvent.idl',
|
||||
'nsIDOMUserProximityEvent.idl',
|
||||
'nsIDOMWheelEvent.idl',
|
||||
]
|
||||
|
||||
|
@ -14,17 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_geolocation
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMGeoGeolocation.idl \
|
||||
nsIDOMGeoPosition.idl \
|
||||
nsIDOMGeoPositionCoords.idl \
|
||||
nsIDOMGeoPositionCallback.idl \
|
||||
nsIDOMGeoPositionError.idl \
|
||||
nsIDOMGeoPositionErrorCallback.idl \
|
||||
nsIDOMNavigatorGeolocation.idl \
|
||||
nsIGeolocation.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,14 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMGeoGeolocation.idl',
|
||||
'nsIDOMGeoPosition.idl',
|
||||
'nsIDOMGeoPositionCallback.idl',
|
||||
'nsIDOMGeoPositionCoords.idl',
|
||||
'nsIDOMGeoPositionError.idl',
|
||||
'nsIDOMGeoPositionErrorCallback.idl',
|
||||
'nsIDOMNavigatorGeolocation.idl',
|
||||
'nsIGeolocation.idl',
|
||||
]
|
||||
|
||||
|
@ -14,85 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_html
|
||||
GRE_MODULE = 1
|
||||
|
||||
SDK_XPIDLSRCS = \
|
||||
nsIDOMHTMLAnchorElement.idl \
|
||||
nsIDOMHTMLAppletElement.idl \
|
||||
nsIDOMHTMLAreaElement.idl \
|
||||
nsIDOMHTMLBRElement.idl \
|
||||
nsIDOMHTMLBaseElement.idl \
|
||||
nsIDOMHTMLBodyElement.idl \
|
||||
nsIDOMHTMLButtonElement.idl \
|
||||
nsIDOMHTMLCollection.idl \
|
||||
nsIDOMHTMLCommandElement.idl \
|
||||
nsIDOMHTMLDataListElement.idl \
|
||||
nsIDOMHTMLDListElement.idl \
|
||||
nsIDOMHTMLDirectoryElement.idl \
|
||||
nsIDOMHTMLDivElement.idl \
|
||||
nsIDOMHTMLDocument.idl \
|
||||
nsIDOMHTMLElement.idl \
|
||||
nsIDOMHTMLEmbedElement.idl \
|
||||
nsIDOMHTMLFieldSetElement.idl \
|
||||
nsIDOMHTMLFontElement.idl \
|
||||
nsIDOMHTMLFormElement.idl \
|
||||
nsIDOMHTMLFrameElement.idl \
|
||||
nsIDOMHTMLFrameSetElement.idl \
|
||||
nsIDOMHTMLHRElement.idl \
|
||||
nsIDOMHTMLHeadElement.idl \
|
||||
nsIDOMHTMLHeadingElement.idl \
|
||||
nsIDOMHTMLHtmlElement.idl \
|
||||
nsIDOMHTMLIFrameElement.idl \
|
||||
nsIDOMHTMLImageElement.idl \
|
||||
nsIDOMHTMLInputElement.idl \
|
||||
nsIDOMHTMLLIElement.idl \
|
||||
nsIDOMHTMLLabelElement.idl \
|
||||
nsIDOMHTMLLegendElement.idl \
|
||||
nsIDOMHTMLLinkElement.idl \
|
||||
nsIDOMHTMLMapElement.idl \
|
||||
nsIDOMHTMLMenuElement.idl \
|
||||
nsIDOMHTMLMenuItemElement.idl \
|
||||
nsIDOMHTMLMetaElement.idl \
|
||||
nsIDOMHTMLMeterElement.idl \
|
||||
nsIDOMHTMLModElement.idl \
|
||||
nsIDOMHTMLOListElement.idl \
|
||||
nsIDOMHTMLObjectElement.idl \
|
||||
nsIDOMHTMLOptGroupElement.idl \
|
||||
nsIDOMHTMLOptionElement.idl \
|
||||
nsIDOMHTMLOptionsCollection.idl \
|
||||
nsIDOMHTMLOutputElement.idl \
|
||||
nsIDOMHTMLParagraphElement.idl \
|
||||
nsIDOMHTMLParamElement.idl \
|
||||
nsIDOMHTMLPreElement.idl \
|
||||
nsIDOMHTMLProgressElement.idl \
|
||||
nsIDOMHTMLQuoteElement.idl \
|
||||
nsIDOMHTMLScriptElement.idl \
|
||||
nsIDOMHTMLSelectElement.idl \
|
||||
nsIDOMHTMLStyleElement.idl \
|
||||
nsIDOMHTMLTableCaptionElem.idl \
|
||||
nsIDOMHTMLTableCellElement.idl \
|
||||
nsIDOMHTMLTableColElement.idl \
|
||||
nsIDOMHTMLTableElement.idl \
|
||||
nsIDOMHTMLTableRowElement.idl \
|
||||
nsIDOMHTMLTableSectionElement.idl \
|
||||
nsIDOMHTMLTextAreaElement.idl \
|
||||
nsIDOMHTMLTitleElement.idl \
|
||||
nsIDOMHTMLUListElement.idl \
|
||||
nsIDOMMediaError.idl \
|
||||
nsIDOMTimeRanges.idl \
|
||||
nsIDOMHTMLByteRanges.idl \
|
||||
nsIDOMHTMLMediaElement.idl \
|
||||
nsIDOMHTMLSourceElement.idl \
|
||||
nsIDOMHTMLVideoElement.idl \
|
||||
nsIDOMHTMLAudioElement.idl \
|
||||
nsIDOMValidityState.idl \
|
||||
nsIDOMMozBrowserFrame.idl \
|
||||
$(NULL)
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMHTMLCanvasElement.idl \
|
||||
nsIDOMHTMLUnknownElement.idl \
|
||||
nsIMozBrowserFrame.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,79 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMHTMLAnchorElement.idl',
|
||||
'nsIDOMHTMLAppletElement.idl',
|
||||
'nsIDOMHTMLAreaElement.idl',
|
||||
'nsIDOMHTMLAudioElement.idl',
|
||||
'nsIDOMHTMLBRElement.idl',
|
||||
'nsIDOMHTMLBaseElement.idl',
|
||||
'nsIDOMHTMLBodyElement.idl',
|
||||
'nsIDOMHTMLButtonElement.idl',
|
||||
'nsIDOMHTMLByteRanges.idl',
|
||||
'nsIDOMHTMLCanvasElement.idl',
|
||||
'nsIDOMHTMLCollection.idl',
|
||||
'nsIDOMHTMLCommandElement.idl',
|
||||
'nsIDOMHTMLDListElement.idl',
|
||||
'nsIDOMHTMLDataListElement.idl',
|
||||
'nsIDOMHTMLDirectoryElement.idl',
|
||||
'nsIDOMHTMLDivElement.idl',
|
||||
'nsIDOMHTMLDocument.idl',
|
||||
'nsIDOMHTMLElement.idl',
|
||||
'nsIDOMHTMLEmbedElement.idl',
|
||||
'nsIDOMHTMLFieldSetElement.idl',
|
||||
'nsIDOMHTMLFontElement.idl',
|
||||
'nsIDOMHTMLFormElement.idl',
|
||||
'nsIDOMHTMLFrameElement.idl',
|
||||
'nsIDOMHTMLFrameSetElement.idl',
|
||||
'nsIDOMHTMLHRElement.idl',
|
||||
'nsIDOMHTMLHeadElement.idl',
|
||||
'nsIDOMHTMLHeadingElement.idl',
|
||||
'nsIDOMHTMLHtmlElement.idl',
|
||||
'nsIDOMHTMLIFrameElement.idl',
|
||||
'nsIDOMHTMLImageElement.idl',
|
||||
'nsIDOMHTMLInputElement.idl',
|
||||
'nsIDOMHTMLLIElement.idl',
|
||||
'nsIDOMHTMLLabelElement.idl',
|
||||
'nsIDOMHTMLLegendElement.idl',
|
||||
'nsIDOMHTMLLinkElement.idl',
|
||||
'nsIDOMHTMLMapElement.idl',
|
||||
'nsIDOMHTMLMediaElement.idl',
|
||||
'nsIDOMHTMLMenuElement.idl',
|
||||
'nsIDOMHTMLMenuItemElement.idl',
|
||||
'nsIDOMHTMLMetaElement.idl',
|
||||
'nsIDOMHTMLMeterElement.idl',
|
||||
'nsIDOMHTMLModElement.idl',
|
||||
'nsIDOMHTMLOListElement.idl',
|
||||
'nsIDOMHTMLObjectElement.idl',
|
||||
'nsIDOMHTMLOptGroupElement.idl',
|
||||
'nsIDOMHTMLOptionElement.idl',
|
||||
'nsIDOMHTMLOptionsCollection.idl',
|
||||
'nsIDOMHTMLOutputElement.idl',
|
||||
'nsIDOMHTMLParagraphElement.idl',
|
||||
'nsIDOMHTMLParamElement.idl',
|
||||
'nsIDOMHTMLPreElement.idl',
|
||||
'nsIDOMHTMLProgressElement.idl',
|
||||
'nsIDOMHTMLQuoteElement.idl',
|
||||
'nsIDOMHTMLScriptElement.idl',
|
||||
'nsIDOMHTMLSelectElement.idl',
|
||||
'nsIDOMHTMLSourceElement.idl',
|
||||
'nsIDOMHTMLStyleElement.idl',
|
||||
'nsIDOMHTMLTableCaptionElem.idl',
|
||||
'nsIDOMHTMLTableCellElement.idl',
|
||||
'nsIDOMHTMLTableColElement.idl',
|
||||
'nsIDOMHTMLTableElement.idl',
|
||||
'nsIDOMHTMLTableRowElement.idl',
|
||||
'nsIDOMHTMLTableSectionElement.idl',
|
||||
'nsIDOMHTMLTextAreaElement.idl',
|
||||
'nsIDOMHTMLTitleElement.idl',
|
||||
'nsIDOMHTMLUListElement.idl',
|
||||
'nsIDOMHTMLUnknownElement.idl',
|
||||
'nsIDOMHTMLVideoElement.idl',
|
||||
'nsIDOMMediaError.idl',
|
||||
'nsIDOMMozBrowserFrame.idl',
|
||||
'nsIDOMTimeRanges.idl',
|
||||
'nsIDOMValidityState.idl',
|
||||
'nsIMozBrowserFrame.idl',
|
||||
]
|
||||
|
||||
|
@ -14,14 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_json
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIJSON.idl \
|
||||
$(NULL)
|
||||
|
||||
SDK_XPIDLSRCS = \
|
||||
nsIJSON.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,7 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIJSON.idl',
|
||||
]
|
||||
|
||||
|
@ -14,10 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_notification
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = nsIDOMNavigatorDesktopNotification.idl \
|
||||
nsIDOMDesktopNotification.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,8 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMDesktopNotification.idl',
|
||||
'nsIDOMNavigatorDesktopNotification.idl',
|
||||
]
|
||||
|
||||
|
@ -14,11 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_offline
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMOfflineResourceList.idl \
|
||||
nsIDOMLoadStatus.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,8 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMLoadStatus.idl',
|
||||
'nsIDOMOfflineResourceList.idl',
|
||||
]
|
||||
|
||||
|
@ -13,11 +13,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_permissionsettings
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMPermissionSettings.idl \
|
||||
nsIPermissionPromptService.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,8 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMPermissionSettings.idl',
|
||||
'nsIPermissionPromptService.idl',
|
||||
]
|
||||
|
||||
|
@ -14,10 +14,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_range
|
||||
GRE_MODULE = 1
|
||||
|
||||
SDK_XPIDLSRCS = \
|
||||
nsIDOMRange.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,7 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMRange.idl',
|
||||
]
|
||||
|
||||
|
@ -13,12 +13,6 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_settings
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsIDOMSettingsManager.idl \
|
||||
nsISettingsService.idl \
|
||||
nsIDOMMozSettingsEvent.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
XPIDL_FLAGS += \
|
||||
|
@ -3,3 +3,9 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIDOMMozSettingsEvent.idl',
|
||||
'nsIDOMSettingsManager.idl',
|
||||
'nsISettingsService.idl',
|
||||
]
|
||||
|
||||
|
@ -14,9 +14,4 @@ MODULE = dom
|
||||
XPIDL_MODULE = dom_sidebar
|
||||
GRE_MODULE = 1
|
||||
|
||||
XPIDLSRCS = \
|
||||
nsISidebar.idl \
|
||||
nsIWebContentHandlerRegistrar.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
@ -3,3 +3,8 @@
|
||||
# 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsISidebar.idl',
|
||||
'nsIWebContentHandlerRegistrar.idl',
|
||||
]
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user