embedding/browser/webBrowser/moz.build

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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     'nsCWebBrowser.idl',
     9     'nsICommandHandler.idl',
    10     'nsIContextMenuListener.idl',
    11     'nsIContextMenuListener2.idl',
    12     'nsIEmbeddingSiteWindow.idl',
    13     'nsITooltipListener.idl',
    14     'nsITooltipTextProvider.idl',
    15     'nsIWebBrowser.idl',
    16     'nsIWebBrowserChrome.idl',
    17     'nsIWebBrowserChrome2.idl',
    18     'nsIWebBrowserChrome3.idl',
    19     'nsIWebBrowserChromeFocus.idl',
    20     'nsIWebBrowserFocus.idl',
    21     'nsIWebBrowserSetup.idl',
    22     'nsIWebBrowserStream.idl',
    23 ]
    25 if CONFIG['NS_PRINTING']:
    26     XPIDL_SOURCES += [
    27         'nsIPrintingPrompt.idl',
    28         'nsIPrintingPromptService.idl',
    29         'nsIWebBrowserPrint.idl',
    30     ]
    32 XPIDL_MODULE = 'webBrowser_core'
    34 EXPORTS += [
    35     'nsCTooltipTextProvider.h',
    36 ]
    38 UNIFIED_SOURCES += [
    39     'nsCommandHandler.cpp',
    40     'nsContextMenuInfo.cpp',
    41     'nsDocShellTreeOwner.cpp',
    42     'nsEmbedStream.cpp',
    43     'nsWebBrowser.cpp',
    44     'nsWebBrowserContentPolicy.cpp',
    45 ]
    47 FAIL_ON_WARNINGS = True
    49 FINAL_LIBRARY = 'webbrwsr'
    50 LOCAL_INCLUDES += [
    51     '../../../content/base/src',
    52     '../../../content/svg/content/src',
    53 ]

mercurial