michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: XPIDL_SOURCES += [ michael@0: 'domstubs.idl', michael@0: 'nsIBrowserDOMWindow.idl', michael@0: 'nsICompositionStringSynthesizer.idl', michael@0: 'nsIContentPermissionPrompt.idl', michael@0: 'nsIContentPrefService.idl', michael@0: 'nsIContentPrefService2.idl', michael@0: 'nsIContentURIGrouper.idl', michael@0: 'nsIDOMChromeWindow.idl', michael@0: 'nsIDOMClientRect.idl', michael@0: 'nsIDOMClientRectList.idl', michael@0: 'nsIDOMConstructor.idl', michael@0: 'nsIDOMGlobalObjectConstructor.idl', michael@0: 'nsIDOMGlobalPropertyInitializer.idl', michael@0: 'nsIDOMHistory.idl', michael@0: 'nsIDOMJSWindow.idl', michael@0: 'nsIDOMLocation.idl', michael@0: 'nsIDOMModalContentWindow.idl', michael@0: 'nsIDOMNavigator.idl', michael@0: 'nsIDOMScreen.idl', michael@0: 'nsIDOMWindow.idl', michael@0: 'nsIDOMWindowCollection.idl', michael@0: 'nsIDOMWindowUtils.idl', michael@0: 'nsIFocusManager.idl', michael@0: 'nsIFrameRequestCallback.idl', michael@0: 'nsIIdleObserver.idl', michael@0: 'nsIQueryContentEventResult.idl', michael@0: 'nsIStructuredCloneContainer.idl', michael@0: 'nsITabChild.idl', michael@0: 'nsITabParent.idl', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_DISABLE_CRYPTOLEGACY']: michael@0: XPIDL_SOURCES += [ michael@0: 'nsIDOMCrypto.idl', michael@0: ] michael@0: else: michael@0: XPIDL_SOURCES += [ michael@0: 'nsIDOMCryptoLegacy.idl', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_B2G']: michael@0: XPIDL_SOURCES += [ michael@0: 'nsIDOMWindowB2G.idl', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_WEBSPEECH']: michael@0: XPIDL_SOURCES += [ michael@0: 'nsISpeechSynthesisGetter.idl' michael@0: ] michael@0: michael@0: XPIDL_MODULE = 'dom_base' michael@0: