2013-12-02 21:56:24 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['interfaces']
|
2013-12-13 11:25:26 +00:00
|
|
|
|
2015-02-10 16:47:24 +00:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/mochitest/chrome.ini']
|
|
|
|
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini']
|
2013-12-13 11:25:26 +00:00
|
|
|
|
2016-03-07 05:00:34 +00:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'FxAccountsComponents.manifest',
|
|
|
|
'FxAccountsPush.js',
|
|
|
|
]
|
|
|
|
|
2013-12-06 06:46:12 +00:00
|
|
|
EXTRA_JS_MODULES += [
|
2014-02-05 06:14:30 +00:00
|
|
|
'Credentials.jsm',
|
2015-07-21 01:23:12 +00:00
|
|
|
'FxAccounts.jsm',
|
2013-12-13 11:25:26 +00:00
|
|
|
'FxAccountsClient.jsm',
|
2014-08-01 05:42:00 +00:00
|
|
|
'FxAccountsCommon.js',
|
|
|
|
'FxAccountsOAuthClient.jsm',
|
2015-02-05 21:31:23 +00:00
|
|
|
'FxAccountsOAuthGrantClient.jsm',
|
2015-03-26 08:33:38 +00:00
|
|
|
'FxAccountsProfile.jsm',
|
2014-08-28 14:10:00 +00:00
|
|
|
'FxAccountsProfileClient.jsm',
|
2016-03-07 05:00:34 +00:00
|
|
|
'FxAccountsPush.js',
|
2015-07-21 01:23:12 +00:00
|
|
|
'FxAccountsStorage.jsm',
|
2016-01-26 15:07:56 +00:00
|
|
|
'FxAccountsWebChannel.jsm',
|
2014-06-14 04:33:20 +00:00
|
|
|
]
|
|
|
|
|
2013-12-13 11:25:26 +00:00
|
|
|
# For now, we will only be using the FxA manager in B2G.
|
|
|
|
if CONFIG['MOZ_B2G']:
|
|
|
|
EXTRA_JS_MODULES += ['FxAccountsManager.jsm']
|