moz.build (762B)
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 += ["tests/unit/xpcshell.toml"] 8 BROWSER_CHROME_MANIFESTS += ["tests/browser/browser.toml"] 9 10 JAR_MANIFESTS += ["jar.mn"] 11 12 FINAL_TARGET_FILES.actors += [ 13 "ProfilesChild.sys.mjs", 14 "ProfilesParent.sys.mjs", 15 ] 16 17 EXTRA_JS_MODULES.profiles += [ 18 "SelectableProfile.sys.mjs", 19 "SelectableProfileService.sys.mjs", 20 ] 21 22 XPCOM_MANIFESTS += [ 23 "components.conf", 24 ] 25 26 with Files("**"): 27 BUG_COMPONENT = ("Toolkit", "Startup and Profile System")