dom/interfaces/base/moz.build

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:8e5d20fc85fb
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/.
6
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 ]
38
39 if CONFIG['MOZ_DISABLE_CRYPTOLEGACY']:
40 XPIDL_SOURCES += [
41 'nsIDOMCrypto.idl',
42 ]
43 else:
44 XPIDL_SOURCES += [
45 'nsIDOMCryptoLegacy.idl',
46 ]
47
48 if CONFIG['MOZ_B2G']:
49 XPIDL_SOURCES += [
50 'nsIDOMWindowB2G.idl',
51 ]
52
53 if CONFIG['MOZ_WEBSPEECH']:
54 XPIDL_SOURCES += [
55 'nsISpeechSynthesisGetter.idl'
56 ]
57
58 XPIDL_MODULE = 'dom_base'
59

mercurial