Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
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 | 'domstubs.idl', |
michael@0 | 9 | 'nsIBrowserDOMWindow.idl', |
michael@0 | 10 | 'nsICompositionStringSynthesizer.idl', |
michael@0 | 11 | 'nsIContentPermissionPrompt.idl', |
michael@0 | 12 | 'nsIContentPrefService.idl', |
michael@0 | 13 | 'nsIContentPrefService2.idl', |
michael@0 | 14 | 'nsIContentURIGrouper.idl', |
michael@0 | 15 | 'nsIDOMChromeWindow.idl', |
michael@0 | 16 | 'nsIDOMClientRect.idl', |
michael@0 | 17 | 'nsIDOMClientRectList.idl', |
michael@0 | 18 | 'nsIDOMConstructor.idl', |
michael@0 | 19 | 'nsIDOMGlobalObjectConstructor.idl', |
michael@0 | 20 | 'nsIDOMGlobalPropertyInitializer.idl', |
michael@0 | 21 | 'nsIDOMHistory.idl', |
michael@0 | 22 | 'nsIDOMJSWindow.idl', |
michael@0 | 23 | 'nsIDOMLocation.idl', |
michael@0 | 24 | 'nsIDOMModalContentWindow.idl', |
michael@0 | 25 | 'nsIDOMNavigator.idl', |
michael@0 | 26 | 'nsIDOMScreen.idl', |
michael@0 | 27 | 'nsIDOMWindow.idl', |
michael@0 | 28 | 'nsIDOMWindowCollection.idl', |
michael@0 | 29 | 'nsIDOMWindowUtils.idl', |
michael@0 | 30 | 'nsIFocusManager.idl', |
michael@0 | 31 | 'nsIFrameRequestCallback.idl', |
michael@0 | 32 | 'nsIIdleObserver.idl', |
michael@0 | 33 | 'nsIQueryContentEventResult.idl', |
michael@0 | 34 | 'nsIStructuredCloneContainer.idl', |
michael@0 | 35 | 'nsITabChild.idl', |
michael@0 | 36 | 'nsITabParent.idl', |
michael@0 | 37 | ] |
michael@0 | 38 | |
michael@0 | 39 | if CONFIG['MOZ_DISABLE_CRYPTOLEGACY']: |
michael@0 | 40 | XPIDL_SOURCES += [ |
michael@0 | 41 | 'nsIDOMCrypto.idl', |
michael@0 | 42 | ] |
michael@0 | 43 | else: |
michael@0 | 44 | XPIDL_SOURCES += [ |
michael@0 | 45 | 'nsIDOMCryptoLegacy.idl', |
michael@0 | 46 | ] |
michael@0 | 47 | |
michael@0 | 48 | if CONFIG['MOZ_B2G']: |
michael@0 | 49 | XPIDL_SOURCES += [ |
michael@0 | 50 | 'nsIDOMWindowB2G.idl', |
michael@0 | 51 | ] |
michael@0 | 52 | |
michael@0 | 53 | if CONFIG['MOZ_WEBSPEECH']: |
michael@0 | 54 | XPIDL_SOURCES += [ |
michael@0 | 55 | 'nsISpeechSynthesisGetter.idl' |
michael@0 | 56 | ] |
michael@0 | 57 | |
michael@0 | 58 | XPIDL_MODULE = 'dom_base' |
michael@0 | 59 |