2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +04:00
|
|
|
# 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/.
|
|
|
|
|
2017-03-01 16:20:25 +03:00
|
|
|
with Files("**"):
|
2019-03-18 02:13:22 +03:00
|
|
|
BUG_COMPONENT = ("Core", "DOM: Core & HTML")
|
2017-03-01 16:20:25 +03:00
|
|
|
|
|
|
|
with Files("en-US/chrome/accessibility/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Disability Access APIs")
|
|
|
|
|
|
|
|
with Files("en-US/chrome/dom/**"):
|
2019-03-18 02:13:22 +03:00
|
|
|
BUG_COMPONENT = ("Core", "DOM: Core & HTML")
|
2017-03-01 16:20:25 +03:00
|
|
|
|
|
|
|
with Files("en-US/chrome/layout/**"):
|
2019-03-18 02:13:22 +03:00
|
|
|
BUG_COMPONENT = ("Core", "DOM: Core & HTML")
|
2017-03-01 16:20:25 +03:00
|
|
|
|
|
|
|
with Files("en-US/chrome/layout/css.properties"):
|
|
|
|
BUG_COMPONENT = ("Core", "CSS Parsing and Computation")
|
|
|
|
|
|
|
|
with Files("en-US/chrome/layout/htmlparser.properties"):
|
2019-11-08 15:17:57 +03:00
|
|
|
BUG_COMPONENT = ("Core", "DOM: HTML Parser")
|
2017-03-01 16:20:25 +03:00
|
|
|
|
|
|
|
with Files("en-US/chrome/layout/layout_errors.properties"):
|
|
|
|
BUG_COMPONENT = ("Core", "DOM: Animation")
|
|
|
|
|
|
|
|
with Files("en-US/chrome/layout/MediaDocument.properties"):
|
2018-09-05 14:16:02 +03:00
|
|
|
BUG_COMPONENT = ("Core", "Layout: Images, Video, and HTML Frames")
|
2017-03-01 16:20:25 +03:00
|
|
|
|
|
|
|
with Files("en-US/chrome/layout/printing.properties"):
|
|
|
|
BUG_COMPONENT = ("Core", "Printing: Output")
|
|
|
|
|
|
|
|
with Files("en-US/chrome/layout/xmlparser.properties"):
|
|
|
|
BUG_COMPONENT = ("Core", "XML")
|
|
|
|
|
|
|
|
with Files("en-US/chrome/layout/xul.properties"):
|
|
|
|
BUG_COMPONENT = ("Core", "XUL")
|
|
|
|
|
|
|
|
with Files("en-US/chrome/mathml/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "MathML")
|
|
|
|
|
|
|
|
with Files("en-US/chrome/security/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Security")
|
|
|
|
|
|
|
|
with Files("en-US/chrome/svg/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "SVG")
|
|
|
|
|
|
|
|
with Files("en-US/chrome/xslt/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "XSLT")
|
|
|
|
|
2018-09-05 14:16:02 +03:00
|
|
|
JAR_MANIFESTS += ["jar.mn"]
|
2019-07-24 16:22:22 +03:00
|
|
|
|
|
|
|
RESOURCE_FILES.locale.layout += [
|
|
|
|
"en-US/chrome/layout/HtmlForm.properties",
|
2019-11-04 19:56:27 +03:00
|
|
|
"en-US/chrome/layout/MediaDocument.properties",
|
|
|
|
"en-US/chrome/layout/xmlparser.properties",
|
|
|
|
]
|
|
|
|
|
|
|
|
RESOURCE_FILES.locale.dom += [
|
|
|
|
"en-US/chrome/dom/dom.properties",
|
2019-07-24 16:22:22 +03:00
|
|
|
]
|