Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
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']