forked from mirrors/gecko-dev
* Move the tabsSetupFlowManager into its own system ESM. This allows multiple about:firefoxview instances to have a single manager and syncronize state without duplication * The first call to tabSetupFlowManager.initialize() will do any necessary setup to wait for sync & fxa services to be ready * tabSetupFlowManager handles its own uninit * Move TabsPickupContainer to match file naming convention for our other custom element modules * TabsPickupContainer instances observe tabSetupFlowManager's notifications for state changes, and can request the current uiStateIndex directly. * The utility openFxaSignup and openSyncPreferences functions now need know which window to open the URL in Differential Revision: https://phabricator.services.mozilla.com/D152151
16 lines
480 B
Python
16 lines
480 B
Python
# -*- Mode: python; 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/.
|
|
|
|
JAR_MANIFESTS += ["jar.mn"]
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
EXTRA_JS_MODULES += [
|
|
"*.sys.mjs",
|
|
]
|
|
|
|
BROWSER_CHROME_MANIFESTS += ["tests/browser/browser.ini"]
|