2018-05-10 16:27:21 +03:00
|
|
|
# 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/.
|
|
|
|
|
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Remote Settings Client")
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
"dumps",
|
2021-06-03 18:27:08 +03:00
|
|
|
"static-dumps",
|
2018-05-10 16:27:21 +03:00
|
|
|
]
|
2018-05-24 16:32:40 +03:00
|
|
|
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
"servicesSettings.manifest",
|
|
|
|
]
|
|
|
|
|
|
|
|
EXTRA_JS_MODULES["services-settings"] += [
|
2019-05-11 01:57:40 +03:00
|
|
|
"Attachments.jsm",
|
2020-03-17 23:23:00 +03:00
|
|
|
"Database.jsm",
|
2020-04-30 11:17:54 +03:00
|
|
|
"IDBHelpers.jsm",
|
2018-05-24 16:32:40 +03:00
|
|
|
"remote-settings.js",
|
2018-11-27 13:34:16 +03:00
|
|
|
"RemoteSettingsClient.jsm",
|
2019-01-30 22:03:10 +03:00
|
|
|
"RemoteSettingsComponents.jsm",
|
2018-11-20 17:00:06 +03:00
|
|
|
"RemoteSettingsWorker.js",
|
|
|
|
"RemoteSettingsWorker.jsm",
|
2020-05-27 16:54:37 +03:00
|
|
|
"SharedUtils.jsm",
|
2018-11-29 20:35:20 +03:00
|
|
|
"Utils.jsm",
|
2018-05-24 16:32:40 +03:00
|
|
|
]
|
|
|
|
|
2019-01-30 22:03:10 +03:00
|
|
|
XPCOM_MANIFESTS += [
|
|
|
|
"components.conf",
|
|
|
|
]
|
|
|
|
|
2018-05-24 16:32:40 +03:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ["test/unit/xpcshell.ini"]
|
2021-03-03 01:24:39 +03:00
|
|
|
|
|
|
|
SPHINX_TREES["/services/settings"] = "docs"
|