2017-05-22 01:02:32 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2017-05-18 10:12:22 +03:00
|
|
|
JAR_MANIFESTS += ["jar.mn"]
|
|
|
|
|
2018-03-20 17:52:54 +03:00
|
|
|
# Register the startup components only for 'all' builds.
|
|
|
|
if CONFIG["MOZ_DEVTOOLS"] == "all":
|
2019-01-30 22:53:03 +03:00
|
|
|
EXTRA_JS_MODULES += [
|
2022-09-26 13:48:05 +03:00
|
|
|
"AboutDebuggingRegistration.sys.mjs",
|
|
|
|
"AboutDevToolsToolboxRegistration.sys.mjs",
|
|
|
|
"DevToolsStartup.sys.mjs",
|
2017-05-26 11:09:42 +03:00
|
|
|
]
|
|
|
|
|
2017-08-03 17:57:19 +03:00
|
|
|
DIRS += [
|
|
|
|
"locales",
|
|
|
|
]
|
|
|
|
|
2019-01-30 22:53:03 +03:00
|
|
|
XPCOM_MANIFESTS += [
|
|
|
|
"components.conf",
|
|
|
|
]
|
|
|
|
|
2023-11-21 15:32:50 +03:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ["tests/xpcshell/xpcshell.toml"]
|
2018-08-28 23:29:58 +03:00
|
|
|
|
|
|
|
if CONFIG["MOZ_BUILD_APP"] != "mobile/android":
|
2023-09-22 23:42:14 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ["tests/browser/browser.toml"]
|