summaryrefslogtreecommitdiffstats
path: root/browser/extensions/doh-rollout
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 14:29:10 +0000
commit2aa4a82499d4becd2284cdb482213d541b8804dd (patch)
treeb80bf8bf13c3766139fbacc530efd0dd9d54394c /browser/extensions/doh-rollout
parentInitial commit. (diff)
downloadfirefox-upstream.tar.xz
firefox-upstream.zip
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/extensions/doh-rollout')
-rw-r--r--browser/extensions/doh-rollout/manifest.json15
-rw-r--r--browser/extensions/doh-rollout/moz.build14
2 files changed, 29 insertions, 0 deletions
diff --git a/browser/extensions/doh-rollout/manifest.json b/browser/extensions/doh-rollout/manifest.json
new file mode 100644
index 0000000000..d41945d991
--- /dev/null
+++ b/browser/extensions/doh-rollout/manifest.json
@@ -0,0 +1,15 @@
+{
+ "manifest_version": 2,
+ "name": "DoH Roll-Out",
+ "description": "This used to be a Mozilla add-on that supported the roll-out of DoH, but now only exists as a stub to enable migrations.",
+ "version": "2.0.0",
+
+ "hidden": true,
+
+ "applications": {
+ "gecko": {
+ "id": "doh-rollout@mozilla.org",
+ "strict_min_version": "72.0a1"
+ }
+ }
+}
diff --git a/browser/extensions/doh-rollout/moz.build b/browser/extensions/doh-rollout/moz.build
new file mode 100644
index 0000000000..bce8283117
--- /dev/null
+++ b/browser/extensions/doh-rollout/moz.build
@@ -0,0 +1,14 @@
+# -*- 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/.
+
+DEFINES["MOZ_APP_VERSION"] = CONFIG["MOZ_APP_VERSION"]
+DEFINES["MOZ_APP_MAXVERSION"] = CONFIG["MOZ_APP_MAXVERSION"]
+
+
+FINAL_TARGET_FILES.features["doh-rollout@mozilla.org"] += ["manifest.json"]
+
+with Files("**"):
+ BUG_COMPONENT = ("Firefox", "Security")