1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/components/passwordmgr/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,40 @@ 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 +MOCHITEST_CHROME_MANIFESTS += ['test/chrome.ini'] 1.12 +BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini'] 1.13 +XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini'] 1.14 + 1.15 +XPIDL_SOURCES += [ 1.16 + 'nsILoginInfo.idl', 1.17 + 'nsILoginManager.idl', 1.18 + 'nsILoginManagerCrypto.idl', 1.19 + 'nsILoginManagerPrompter.idl', 1.20 + 'nsILoginManagerStorage.idl', 1.21 + 'nsILoginMetaInfo.idl', 1.22 +] 1.23 + 1.24 +XPIDL_MODULE = 'loginmgr' 1.25 + 1.26 +EXTRA_COMPONENTS += [ 1.27 + 'crypto-SDR.js', 1.28 + 'nsLoginInfo.js', 1.29 + 'nsLoginManager.js', 1.30 + 'nsLoginManagerPrompter.js', 1.31 + 'passwordmgr.manifest', 1.32 +] 1.33 + 1.34 +EXTRA_PP_COMPONENTS += [ 1.35 + 'storage-mozStorage.js', 1.36 +] 1.37 + 1.38 +EXTRA_JS_MODULES += [ 1.39 + 'InsecurePasswordUtils.jsm', 1.40 + 'LoginManagerContent.jsm', 1.41 +] 1.42 + 1.43 +JAR_MANIFESTS += ['jar.mn']