michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: XPIDL_SOURCES += [ michael@0: 'nsCWebBrowser.idl', michael@0: 'nsICommandHandler.idl', michael@0: 'nsIContextMenuListener.idl', michael@0: 'nsIContextMenuListener2.idl', michael@0: 'nsIEmbeddingSiteWindow.idl', michael@0: 'nsITooltipListener.idl', michael@0: 'nsITooltipTextProvider.idl', michael@0: 'nsIWebBrowser.idl', michael@0: 'nsIWebBrowserChrome.idl', michael@0: 'nsIWebBrowserChrome2.idl', michael@0: 'nsIWebBrowserChrome3.idl', michael@0: 'nsIWebBrowserChromeFocus.idl', michael@0: 'nsIWebBrowserFocus.idl', michael@0: 'nsIWebBrowserSetup.idl', michael@0: 'nsIWebBrowserStream.idl', michael@0: ] michael@0: michael@0: if CONFIG['NS_PRINTING']: michael@0: XPIDL_SOURCES += [ michael@0: 'nsIPrintingPrompt.idl', michael@0: 'nsIPrintingPromptService.idl', michael@0: 'nsIWebBrowserPrint.idl', michael@0: ] michael@0: michael@0: XPIDL_MODULE = 'webBrowser_core' michael@0: michael@0: EXPORTS += [ michael@0: 'nsCTooltipTextProvider.h', michael@0: ] michael@0: michael@0: UNIFIED_SOURCES += [ michael@0: 'nsCommandHandler.cpp', michael@0: 'nsContextMenuInfo.cpp', michael@0: 'nsDocShellTreeOwner.cpp', michael@0: 'nsEmbedStream.cpp', michael@0: 'nsWebBrowser.cpp', michael@0: 'nsWebBrowserContentPolicy.cpp', michael@0: ] michael@0: michael@0: FAIL_ON_WARNINGS = True michael@0: michael@0: FINAL_LIBRARY = 'webbrwsr' michael@0: LOCAL_INCLUDES += [ michael@0: '../../../content/base/src', michael@0: '../../../content/svg/content/src', michael@0: ] michael@0: