mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-02 17:28:50 +02:00
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
30 lines
799 B
Python
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",
|
|
]
|