1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/interfaces/base/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,59 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +XPIDL_SOURCES += [ 1.11 + 'domstubs.idl', 1.12 + 'nsIBrowserDOMWindow.idl', 1.13 + 'nsICompositionStringSynthesizer.idl', 1.14 + 'nsIContentPermissionPrompt.idl', 1.15 + 'nsIContentPrefService.idl', 1.16 + 'nsIContentPrefService2.idl', 1.17 + 'nsIContentURIGrouper.idl', 1.18 + 'nsIDOMChromeWindow.idl', 1.19 + 'nsIDOMClientRect.idl', 1.20 + 'nsIDOMClientRectList.idl', 1.21 + 'nsIDOMConstructor.idl', 1.22 + 'nsIDOMGlobalObjectConstructor.idl', 1.23 + 'nsIDOMGlobalPropertyInitializer.idl', 1.24 + 'nsIDOMHistory.idl', 1.25 + 'nsIDOMJSWindow.idl', 1.26 + 'nsIDOMLocation.idl', 1.27 + 'nsIDOMModalContentWindow.idl', 1.28 + 'nsIDOMNavigator.idl', 1.29 + 'nsIDOMScreen.idl', 1.30 + 'nsIDOMWindow.idl', 1.31 + 'nsIDOMWindowCollection.idl', 1.32 + 'nsIDOMWindowUtils.idl', 1.33 + 'nsIFocusManager.idl', 1.34 + 'nsIFrameRequestCallback.idl', 1.35 + 'nsIIdleObserver.idl', 1.36 + 'nsIQueryContentEventResult.idl', 1.37 + 'nsIStructuredCloneContainer.idl', 1.38 + 'nsITabChild.idl', 1.39 + 'nsITabParent.idl', 1.40 +] 1.41 + 1.42 +if CONFIG['MOZ_DISABLE_CRYPTOLEGACY']: 1.43 + XPIDL_SOURCES += [ 1.44 + 'nsIDOMCrypto.idl', 1.45 + ] 1.46 +else: 1.47 + XPIDL_SOURCES += [ 1.48 + 'nsIDOMCryptoLegacy.idl', 1.49 + ] 1.50 + 1.51 +if CONFIG['MOZ_B2G']: 1.52 + XPIDL_SOURCES += [ 1.53 + 'nsIDOMWindowB2G.idl', 1.54 + ] 1.55 + 1.56 +if CONFIG['MOZ_WEBSPEECH']: 1.57 + XPIDL_SOURCES += [ 1.58 + 'nsISpeechSynthesisGetter.idl' 1.59 + ] 1.60 + 1.61 +XPIDL_MODULE = 'dom_base' 1.62 +