1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/embedding/browser/webBrowser/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,54 @@ 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 + 'nsCWebBrowser.idl', 1.12 + 'nsICommandHandler.idl', 1.13 + 'nsIContextMenuListener.idl', 1.14 + 'nsIContextMenuListener2.idl', 1.15 + 'nsIEmbeddingSiteWindow.idl', 1.16 + 'nsITooltipListener.idl', 1.17 + 'nsITooltipTextProvider.idl', 1.18 + 'nsIWebBrowser.idl', 1.19 + 'nsIWebBrowserChrome.idl', 1.20 + 'nsIWebBrowserChrome2.idl', 1.21 + 'nsIWebBrowserChrome3.idl', 1.22 + 'nsIWebBrowserChromeFocus.idl', 1.23 + 'nsIWebBrowserFocus.idl', 1.24 + 'nsIWebBrowserSetup.idl', 1.25 + 'nsIWebBrowserStream.idl', 1.26 +] 1.27 + 1.28 +if CONFIG['NS_PRINTING']: 1.29 + XPIDL_SOURCES += [ 1.30 + 'nsIPrintingPrompt.idl', 1.31 + 'nsIPrintingPromptService.idl', 1.32 + 'nsIWebBrowserPrint.idl', 1.33 + ] 1.34 + 1.35 +XPIDL_MODULE = 'webBrowser_core' 1.36 + 1.37 +EXPORTS += [ 1.38 + 'nsCTooltipTextProvider.h', 1.39 +] 1.40 + 1.41 +UNIFIED_SOURCES += [ 1.42 + 'nsCommandHandler.cpp', 1.43 + 'nsContextMenuInfo.cpp', 1.44 + 'nsDocShellTreeOwner.cpp', 1.45 + 'nsEmbedStream.cpp', 1.46 + 'nsWebBrowser.cpp', 1.47 + 'nsWebBrowserContentPolicy.cpp', 1.48 +] 1.49 + 1.50 +FAIL_ON_WARNINGS = True 1.51 + 1.52 +FINAL_LIBRARY = 'webbrwsr' 1.53 +LOCAL_INCLUDES += [ 1.54 + '../../../content/base/src', 1.55 + '../../../content/svg/content/src', 1.56 +] 1.57 +