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