moz.build (728B)
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 with Files("**"): 8 BUG_COMPONENT = ("Firefox", "New Tab Page") 9 10 SPHINX_TREES["docs"] = "docs" 11 12 BROWSER_CHROME_MANIFESTS += [ 13 "test/browser/browser.toml", 14 ] 15 16 PYTHON_UNITTEST_MANIFESTS += ["test/pytest/python.toml"] 17 18 XPCSHELL_TESTS_MANIFESTS += [ 19 "test/xpcshell/xpcshell.toml", 20 ] 21 22 if CONFIG["BROWSER_NEWTAB_AS_ADDON"]: 23 JAR_MANIFESTS += ["addon-jar.mn"] 24 DIRS += ["webext-glue"] 25 else: 26 JAR_MANIFESTS += ["legacy-jar.mn"]