Even if we don't submit some metrics from Fenix, we still want to have them defined in the schema. This will result in the telemetry tables having the same schema, which makes analyzing and combining data much easier. Differential Revision: https://phabricator.services.mozilla.com/D242965
18 lines
511 B
Python
18 lines
511 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/.
|
|
|
|
FINAL_TARGET_FILES.actors = [
|
|
"ReportBrokenSiteChild.sys.mjs",
|
|
"ReportBrokenSiteParent.sys.mjs",
|
|
]
|
|
|
|
DIRS += [
|
|
"tests",
|
|
]
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Web Compatibility", "Tooling & Investigations")
|