moz.build (1088B)
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 += [ 8 "tests/unit/xpcshell.toml", 9 ] 10 MOCHITEST_CHROME_MANIFESTS += ["tests/chrome/chrome.toml"] 11 BROWSER_CHROME_MANIFESTS += [ 12 "tests/browser/browser.toml", 13 "tests/browser/browserSidebarRevamp.toml", 14 "tests/browser/interactions/browser.toml", 15 ] 16 MARIONETTE_MANIFESTS += ["tests/marionette/manifest.toml"] 17 18 JAR_MANIFESTS += ["jar.mn"] 19 20 SPHINX_TREES["/browser/places"] = "docs" 21 22 MOZ_SRC_FILES += [ 23 "Interactions.sys.mjs", 24 "InteractionsBlocklist.sys.mjs", 25 "PlacesBrowserStartup.sys.mjs", 26 "PlacesUIUtils.sys.mjs", 27 ] 28 29 EXTRA_COMPONENTS += [ 30 "PlacesComponents.manifest", 31 ] 32 33 34 FINAL_TARGET_FILES.actors += [ 35 "InteractionsChild.sys.mjs", 36 "InteractionsParent.sys.mjs", 37 ] 38 39 with Files("**"): 40 BUG_COMPONENT = ("Firefox", "Bookmarks & History")