moz.build (1374B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 XPCSHELL_TESTS_MANIFESTS += ["test/unit/xpcshell.toml"] 8 BROWSER_CHROME_MANIFESTS += ["test/browser.toml", "test/browser_oldformat.toml"] 9 MARIONETTE_MANIFESTS += ["test/marionette/manifest.toml"] 10 11 JAR_MANIFESTS += ["jar.mn"] 12 13 EXTRA_JS_MODULES.sessionstore = [ 14 "GlobalState.sys.mjs", 15 "PageWireframes.sys.mjs", 16 "RecentlyClosedTabsAndWindowsMenuUtils.sys.mjs", 17 "RunState.sys.mjs", 18 "session.schema.json", 19 "SessionCookies.sys.mjs", 20 "SessionFile.sys.mjs", 21 "SessionLogger.sys.mjs", 22 "SessionMigration.sys.mjs", 23 "SessionSaver.sys.mjs", 24 "SessionStartup.sys.mjs", 25 "SessionStore.sys.mjs", 26 "SessionStoreFunctions.sys.mjs", 27 "SessionWindowUI.sys.mjs", 28 "SessionWriter.sys.mjs", 29 "StartupPerformance.sys.mjs", 30 "TabAttributes.sys.mjs", 31 "TabGroupState.sys.mjs", 32 "TabState.sys.mjs", 33 "TabStateCache.sys.mjs", 34 "TabStateFlusher.sys.mjs", 35 ] 36 37 XPCOM_MANIFESTS += [ 38 "components.conf", 39 ] 40 41 TESTING_JS_MODULES += [ 42 "test/SessionStoreTestUtils.sys.mjs", 43 ] 44 45 with Files("**"): 46 BUG_COMPONENT = ("Firefox", "Session Restore")