2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-12-03 01:56:24 +04:00
|
|
|
# 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/.
|
|
|
|
|
2017-03-09 13:33:31 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'fxAccounts')
|
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['interfaces']
|
2013-12-13 15:25:26 +04:00
|
|
|
|
2015-02-10 19:47:24 +03:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/mochitest/chrome.ini']
|
|
|
|
|
2017-01-05 03:21:36 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['tests/browser/browser.ini']
|
|
|
|
|
2015-02-10 19:47:24 +03:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini']
|
2013-12-13 15:25:26 +04:00
|
|
|
|
2016-03-07 08:00:34 +03:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'FxAccountsComponents.manifest',
|
|
|
|
'FxAccountsPush.js',
|
|
|
|
]
|
|
|
|
|
2013-12-06 10:46:12 +04:00
|
|
|
EXTRA_JS_MODULES += [
|
2014-02-05 10:14:30 +04:00
|
|
|
'Credentials.jsm',
|
2015-07-21 04:23:12 +03:00
|
|
|
'FxAccounts.jsm',
|
2013-12-13 15:25:26 +04:00
|
|
|
'FxAccountsClient.jsm',
|
2014-08-01 09:42:00 +04:00
|
|
|
'FxAccountsCommon.js',
|
2016-09-21 22:07:28 +03:00
|
|
|
'FxAccountsConfig.jsm',
|
2015-02-06 00:31:23 +03:00
|
|
|
'FxAccountsOAuthGrantClient.jsm',
|
2015-03-26 11:33:38 +03:00
|
|
|
'FxAccountsProfile.jsm',
|
2014-08-28 18:10:00 +04:00
|
|
|
'FxAccountsProfileClient.jsm',
|
2015-07-21 04:23:12 +03:00
|
|
|
'FxAccountsStorage.jsm',
|
2016-01-26 18:07:56 +03:00
|
|
|
'FxAccountsWebChannel.jsm',
|
2014-06-14 08:33:20 +04:00
|
|
|
]
|