Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- |
michael@0 | 2 | # vim: set filetype=python: |
michael@0 | 3 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | |
michael@0 | 7 | MOCHITEST_MANIFESTS += ['test/mochitest.ini'] |
michael@0 | 8 | XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini'] |
michael@0 | 9 | BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini'] |
michael@0 | 10 | |
michael@0 | 11 | XPIDL_SOURCES += [ |
michael@0 | 12 | 'nsIFormAutoComplete.idl', |
michael@0 | 13 | 'nsIFormFillController.idl', |
michael@0 | 14 | 'nsIFormHistory.idl', |
michael@0 | 15 | 'nsIInputListAutoComplete.idl', |
michael@0 | 16 | ] |
michael@0 | 17 | |
michael@0 | 18 | XPIDL_MODULE = 'satchel' |
michael@0 | 19 | |
michael@0 | 20 | SOURCES += [ |
michael@0 | 21 | 'nsFormFillController.cpp', |
michael@0 | 22 | ] |
michael@0 | 23 | |
michael@0 | 24 | LOCAL_INCLUDES += [ |
michael@0 | 25 | '../build', |
michael@0 | 26 | ] |
michael@0 | 27 | |
michael@0 | 28 | EXTRA_COMPONENTS += [ |
michael@0 | 29 | 'FormHistoryStartup.js', |
michael@0 | 30 | 'nsFormAutoComplete.js', |
michael@0 | 31 | 'nsInputListAutoComplete.js', |
michael@0 | 32 | 'satchel.manifest', |
michael@0 | 33 | ] |
michael@0 | 34 | |
michael@0 | 35 | EXTRA_PP_COMPONENTS += [ |
michael@0 | 36 | 'nsFormHistory.js', |
michael@0 | 37 | ] |
michael@0 | 38 | |
michael@0 | 39 | EXTRA_JS_MODULES += [ |
michael@0 | 40 | 'AutoCompleteE10S.jsm', |
michael@0 | 41 | 'nsFormAutoCompleteResult.jsm', |
michael@0 | 42 | ] |
michael@0 | 43 | |
michael@0 | 44 | EXTRA_PP_JS_MODULES += [ |
michael@0 | 45 | 'FormHistory.jsm', |
michael@0 | 46 | ] |
michael@0 | 47 | |
michael@0 | 48 | FINAL_LIBRARY = 'xul' |
michael@0 | 49 | |
michael@0 | 50 | JAR_MANIFESTS += ['jar.mn'] |