diff options
Diffstat (limited to 'browser/extensions/doh-rollout')
-rw-r--r-- | browser/extensions/doh-rollout/manifest.json | 15 | ||||
-rw-r--r-- | browser/extensions/doh-rollout/moz.build | 14 |
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") |