mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-02 09:18:36 +02:00
We handle this similarly to pasting into a prompt() dialog, so I refactored that logic into a new ContentAnalysisUtils and call it from both places. Also drive-by cleanup of BUG_COMPONENT for a few Content Analysis moz.build's Differential Revision: https://phabricator.services.mozilla.com/D244818
12 lines
427 B
Python
12 lines
427 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/.
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Firefox", "Data Loss Prevention")
|
|
|
|
EXTRA_JS_MODULES += [
|
|
"content/ContentAnalysis.sys.mjs",
|
|
]
|