moz.build (837B)
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 JAR_MANIFESTS += ["jar.mn"] 8 9 # Register the startup components only for 'all' builds. 10 if CONFIG["MOZ_DEVTOOLS"] == "all": 11 EXTRA_JS_MODULES += [ 12 "AboutDebuggingRegistration.sys.mjs", 13 "AboutDevToolsToolboxRegistration.sys.mjs", 14 "DevToolsStartup.sys.mjs", 15 ] 16 17 DIRS += [ 18 "locales", 19 ] 20 21 XPCOM_MANIFESTS += [ 22 "components.conf", 23 ] 24 25 XPCSHELL_TESTS_MANIFESTS += ["tests/xpcshell/xpcshell.toml"] 26 27 if CONFIG["MOZ_BUILD_APP"] != "mobile/android": 28 BROWSER_CHROME_MANIFESTS += ["tests/browser/browser.toml"]