Bumping manifests a=b2g-bump
[gecko.git] / embedding / browser / moz.build
blobffe0de72d4881dc241d3fc994b49c3fbf56bef0c
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 DIRS += ['build']
9 XPIDL_SOURCES += [
10     'nsCWebBrowser.idl',
11     'nsICommandHandler.idl',
12     'nsIContextMenuListener.idl',
13     'nsIContextMenuListener2.idl',
14     'nsIEmbeddingSiteWindow.idl',
15     'nsITooltipListener.idl',
16     'nsITooltipTextProvider.idl',
17     'nsIWebBrowser.idl',
18     'nsIWebBrowserChrome.idl',
19     'nsIWebBrowserChrome2.idl',
20     'nsIWebBrowserChrome3.idl',
21     'nsIWebBrowserChromeFocus.idl',
22     'nsIWebBrowserFocus.idl',
23     'nsIWebBrowserSetup.idl',
24     'nsIWebBrowserStream.idl',
27 if CONFIG['NS_PRINTING']:
28     XPIDL_SOURCES += [
29         'nsIPrintingPrompt.idl',
30         'nsIPrintingPromptService.idl',
31         'nsIWebBrowserPrint.idl',
32     ]
34 XPIDL_MODULE = 'webBrowser_core'
36 EXPORTS += [
37     'nsCTooltipTextProvider.h',
40 UNIFIED_SOURCES += [
41     'nsCommandHandler.cpp',
42     'nsContextMenuInfo.cpp',
43     'nsDocShellTreeOwner.cpp',
44     'nsEmbedStream.cpp',
45     'nsWebBrowser.cpp',
46     'nsWebBrowserContentPolicy.cpp',
49 FAIL_ON_WARNINGS = True
51 FINAL_LIBRARY = 'xul'
52 LOCAL_INCLUDES += [
53     '/dom/base',
54     '/dom/svg',