mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
c864319e62
From 4a92f9ee1ba35989f82a24bba18806f8616a5be8 Mon Sep 17 00:00:00 2001 --- services/fxaccounts/FxAccounts.jsm | 170 ++++++++++++++++++ services/fxaccounts/FxAccountsCommon.js | 13 ++ services/fxaccounts/moz.build | 5 +- .../tests/xpcshell/test_loginmgr_storage.js | 196 +++++++++++++++++++++ services/fxaccounts/tests/xpcshell/xpcshell.ini | 2 + services/sync/modules/util.js | 12 +- 6 files changed, 396 insertions(+), 2 deletions(-) create mode 100644 services/fxaccounts/tests/xpcshell/test_loginmgr_storage.js
25 lines
659 B
Python
25 lines
659 B
Python
# -*- 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/.
|
|
|
|
DIRS += ['interfaces']
|
|
|
|
TEST_DIRS += ['tests']
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'Credentials.jsm',
|
|
'FxAccountsClient.jsm',
|
|
'FxAccountsCommon.js',
|
|
'FxAccountsOAuthClient.jsm',
|
|
]
|
|
|
|
EXTRA_PP_JS_MODULES += [
|
|
'FxAccounts.jsm',
|
|
]
|
|
|
|
# For now, we will only be using the FxA manager in B2G.
|
|
if CONFIG['MOZ_B2G']:
|
|
EXTRA_JS_MODULES += ['FxAccountsManager.jsm']
|