toolkit/components/satchel/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 MOCHITEST_MANIFESTS += ['test/mochitest.ini']
     8 XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
     9 BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini']
    11 XPIDL_SOURCES += [
    12     'nsIFormAutoComplete.idl',
    13     'nsIFormFillController.idl',
    14     'nsIFormHistory.idl',
    15     'nsIInputListAutoComplete.idl',
    16 ]
    18 XPIDL_MODULE = 'satchel'
    20 SOURCES += [
    21     'nsFormFillController.cpp',
    22 ]
    24 LOCAL_INCLUDES += [
    25     '../build',
    26 ]
    28 EXTRA_COMPONENTS += [
    29     'FormHistoryStartup.js',
    30     'nsFormAutoComplete.js',
    31     'nsInputListAutoComplete.js',
    32     'satchel.manifest',
    33 ]
    35 EXTRA_PP_COMPONENTS += [
    36     'nsFormHistory.js',
    37 ]
    39 EXTRA_JS_MODULES += [
    40     'AutoCompleteE10S.jsm',
    41     'nsFormAutoCompleteResult.jsm',
    42 ]
    44 EXTRA_PP_JS_MODULES += [
    45     'FormHistory.jsm',
    46 ]
    48 FINAL_LIBRARY = 'xul'
    50 JAR_MANIFESTS += ['jar.mn']

mercurial