Files
tubestation/browser/components/extensions/moz.build
Sam Foster 9a29a8c3ee Bug 1833522 - Add closed tabs from closed windows to the history:recently-closed tab menus. r=dao,extension-reviewers,sessionstore-reviewers,sclements,robwu,Standard8,fxview-reviewers
* Change the signature for SessionStore.getClosedTabCount to accept either a window or options object
* Extend tests for the recently-closed-tabs menu(s)
* Add a test manifest to run the session/recently-closed tabs related extension tests with the
  legacy (false) values for the all-windows and closed tabs from closed windows prefs

Differential Revision: https://phabricator.services.mozilla.com/D186400
2023-09-08 00:36:32 +00:00

38 lines
945 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/.
with Files("**"):
BUG_COMPONENT = ("WebExtensions", "Untriaged")
JAR_MANIFESTS += ["jar.mn"]
EXTRA_COMPONENTS += [
"extensions-browser.manifest",
]
EXTRA_JS_MODULES += [
"ExtensionBrowsingData.sys.mjs",
"ExtensionControlledPopup.sys.mjs",
"ExtensionPopups.sys.mjs",
]
TESTING_JS_MODULES += [
"test/AppUiTestDelegate.sys.mjs",
]
DIRS += ["schemas"]
BROWSER_CHROME_MANIFESTS += [
"test/browser/browser-private.ini",
"test/browser/browser.ini",
"test/browser/browser_legacy_recent_tabs.ini",
]
MOCHITEST_MANIFESTS += ["test/mochitest/mochitest.ini"]
XPCSHELL_TESTS_MANIFESTS += [
"test/xpcshell/xpcshell.ini",
]