toolkit/components/satchel/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/components/satchel/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,50 @@
     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 +MOCHITEST_MANIFESTS += ['test/mochitest.ini']
    1.11 +XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
    1.12 +BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini']
    1.13 +
    1.14 +XPIDL_SOURCES += [
    1.15 +    'nsIFormAutoComplete.idl',
    1.16 +    'nsIFormFillController.idl',
    1.17 +    'nsIFormHistory.idl',
    1.18 +    'nsIInputListAutoComplete.idl',
    1.19 +]
    1.20 +
    1.21 +XPIDL_MODULE = 'satchel'
    1.22 +
    1.23 +SOURCES += [
    1.24 +    'nsFormFillController.cpp',
    1.25 +]
    1.26 +
    1.27 +LOCAL_INCLUDES += [
    1.28 +    '../build',
    1.29 +]
    1.30 +
    1.31 +EXTRA_COMPONENTS += [
    1.32 +    'FormHistoryStartup.js',
    1.33 +    'nsFormAutoComplete.js',
    1.34 +    'nsInputListAutoComplete.js',
    1.35 +    'satchel.manifest',
    1.36 +]
    1.37 +
    1.38 +EXTRA_PP_COMPONENTS += [
    1.39 +    'nsFormHistory.js',
    1.40 +]
    1.41 +
    1.42 +EXTRA_JS_MODULES += [
    1.43 +    'AutoCompleteE10S.jsm',
    1.44 +    'nsFormAutoCompleteResult.jsm',
    1.45 +]
    1.46 +
    1.47 +EXTRA_PP_JS_MODULES += [
    1.48 +    'FormHistory.jsm',
    1.49 +]
    1.50 +
    1.51 +FINAL_LIBRARY = 'xul'
    1.52 +
    1.53 +JAR_MANIFESTS += ['jar.mn']

mercurial