gecko-dev/browser/components/taskbartabs/moz.build
Nicholas Rishel c4e70c9522 Bug 1915742 - Update Taskbar Tabs command line handling to use the Taskbar Tabs window manager instead of creating the window directly. r=cdupuis
Because we reuse `-new-window` for Taskbar Tabs shortcuts for fallback when Taskbar Tabs are disabled, `command-line-handler` was modified from `m-taskbar-tabs` to `l-taskbar-tabs` to ensure we preempt `BrowserContentHandler` which consumes `-new-window`.

As a tagalong, fixup Unix style line endings.

Differential Revision: https://phabricator.services.mozilla.com/D249722
2025-06-16 04:55:23 +00:00

30 lines
799 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/.
EXTRA_JS_MODULES.taskbartabs += [
"TaskbarTabs.sys.mjs",
"TaskbarTabsChrome.sys.mjs",
"TaskbarTabsCmd.sys.mjs",
"TaskbarTabsPageAction.sys.mjs",
"TaskbarTabsPin.sys.mjs",
"TaskbarTabsRegistry.sys.mjs",
"TaskbarTabsUtils.sys.mjs",
"TaskbarTabsWindowManager.sys.mjs",
]
JAR_MANIFESTS += ["jar.mn"]
BROWSER_CHROME_MANIFESTS += [
"test/browser/browser.toml",
]
XPCSHELL_TESTS_MANIFESTS += [
"test/xpcshell/xpcshell.toml",
]
XPCOM_MANIFESTS += [
"components.conf",
]