2013-12-03 01:56:24 +04: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-29 03:57:59 +04:00
|
|
|
DIRS += ['interfaces']
|
2013-12-13 15:25:26 +04:00
|
|
|
|
2013-12-03 01:56:24 +04:00
|
|
|
TEST_DIRS += ['tests']
|
2013-12-13 15:25:26 +04:00
|
|
|
|
2013-12-06 10:46:12 +04:00
|
|
|
EXTRA_JS_MODULES += [
|
2014-02-05 10:14:30 +04:00
|
|
|
'Credentials.jsm',
|
2013-12-13 15:25:26 +04:00
|
|
|
'FxAccountsClient.jsm',
|
2014-08-01 09:42:00 +04:00
|
|
|
'FxAccountsCommon.js',
|
|
|
|
'FxAccountsOAuthClient.jsm',
|
2014-08-28 18:10:00 +04:00
|
|
|
'FxAccountsProfileClient.jsm',
|
2013-12-06 10:46:12 +04:00
|
|
|
]
|
2013-12-13 15:25:26 +04:00
|
|
|
|
2014-06-14 08:33:20 +04:00
|
|
|
EXTRA_PP_JS_MODULES += [
|
|
|
|
'FxAccounts.jsm',
|
|
|
|
]
|
|
|
|
|
2013-12-13 15:25:26 +04:00
|
|
|
# For now, we will only be using the FxA manager in B2G.
|
|
|
|
if CONFIG['MOZ_B2G']:
|
|
|
|
EXTRA_JS_MODULES += ['FxAccountsManager.jsm']
|