mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-02 09:18:36 +02:00
This isn't particularly big but it has lived in BrowserGlue for a surprisingly long time, and doesn't really belong there. There wasn't a _great_ home for this, so I created a new directory. SitePermissions.sys.mjs and other bits probably want to live in this directory too, but one thing at a time. Differential Revision: https://phabricator.services.mozilla.com/D244424
16 lines
467 B
Python
16 lines
467 B
Python
# -*- 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/.
|
|
|
|
XPCOM_MANIFESTS += [
|
|
"components.conf",
|
|
]
|
|
|
|
MOZ_SRC_FILES += [
|
|
"ContentPermissionPrompt.sys.mjs",
|
|
]
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Firefox", "Site Permissions")
|