Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 XPIDL_SOURCES += [
8 'domstubs.idl',
9 'nsIBrowserDOMWindow.idl',
10 'nsICompositionStringSynthesizer.idl',
11 'nsIContentPermissionPrompt.idl',
12 'nsIContentPrefService.idl',
13 'nsIContentPrefService2.idl',
14 'nsIContentURIGrouper.idl',
15 'nsIDOMChromeWindow.idl',
16 'nsIDOMClientRect.idl',
17 'nsIDOMClientRectList.idl',
18 'nsIDOMConstructor.idl',
19 'nsIDOMGlobalObjectConstructor.idl',
20 'nsIDOMGlobalPropertyInitializer.idl',
21 'nsIDOMHistory.idl',
22 'nsIDOMJSWindow.idl',
23 'nsIDOMLocation.idl',
24 'nsIDOMModalContentWindow.idl',
25 'nsIDOMNavigator.idl',
26 'nsIDOMScreen.idl',
27 'nsIDOMWindow.idl',
28 'nsIDOMWindowCollection.idl',
29 'nsIDOMWindowUtils.idl',
30 'nsIFocusManager.idl',
31 'nsIFrameRequestCallback.idl',
32 'nsIIdleObserver.idl',
33 'nsIQueryContentEventResult.idl',
34 'nsIStructuredCloneContainer.idl',
35 'nsITabChild.idl',
36 'nsITabParent.idl',
37 ]
39 if CONFIG['MOZ_DISABLE_CRYPTOLEGACY']:
40 XPIDL_SOURCES += [
41 'nsIDOMCrypto.idl',
42 ]
43 else:
44 XPIDL_SOURCES += [
45 'nsIDOMCryptoLegacy.idl',
46 ]
48 if CONFIG['MOZ_B2G']:
49 XPIDL_SOURCES += [
50 'nsIDOMWindowB2G.idl',
51 ]
53 if CONFIG['MOZ_WEBSPEECH']:
54 XPIDL_SOURCES += [
55 'nsISpeechSynthesisGetter.idl'
56 ]
58 XPIDL_MODULE = 'dom_base'