moz.build (1965B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 with Files("**"): 8 BUG_COMPONENT = ("Core", "DOM: Core & HTML") 9 10 with Files("en-US/chrome/accessibility/**"): 11 BUG_COMPONENT = ("Core", "Disability Access APIs") 12 13 with Files("en-US/chrome/dom/**"): 14 BUG_COMPONENT = ("Core", "DOM: Core & HTML") 15 16 with Files("en-US/chrome/layout/**"): 17 BUG_COMPONENT = ("Core", "DOM: Core & HTML") 18 19 with Files("en-US/chrome/layout/css.properties"): 20 BUG_COMPONENT = ("Core", "CSS Parsing and Computation") 21 22 with Files("en-US/chrome/layout/htmlparser.properties"): 23 BUG_COMPONENT = ("Core", "DOM: HTML Parser") 24 25 with Files("en-US/chrome/layout/layout_errors.properties"): 26 BUG_COMPONENT = ("Core", "DOM: Animation") 27 28 with Files("en-US/chrome/layout/MediaDocument.properties"): 29 BUG_COMPONENT = ("Core", "Layout: Images, Video, and HTML Frames") 30 31 with Files("en-US/chrome/layout/printing.properties"): 32 BUG_COMPONENT = ("Core", "Printing: Output") 33 34 with Files("en-US/chrome/layout/xmlparser.properties"): 35 BUG_COMPONENT = ("Core", "XML") 36 37 with Files("en-US/chrome/layout/xul.properties"): 38 BUG_COMPONENT = ("Core", "XUL") 39 40 with Files("en-US/chrome/mathml/**"): 41 BUG_COMPONENT = ("Core", "MathML") 42 43 with Files("en-US/chrome/security/**"): 44 BUG_COMPONENT = ("Core", "Security") 45 46 with Files("en-US/chrome/svg/**"): 47 BUG_COMPONENT = ("Core", "SVG") 48 49 with Files("en-US/chrome/xslt/**"): 50 BUG_COMPONENT = ("Core", "XSLT") 51 52 JAR_MANIFESTS += ["jar.mn"] 53 54 RESOURCE_FILES.locale.layout += [ 55 "en-US/chrome/layout/HtmlForm.properties", 56 "en-US/chrome/layout/MediaDocument.properties", 57 "en-US/chrome/layout/xmlparser.properties", 58 ] 59 60 RESOURCE_FILES.locale.dom += [ 61 "en-US/chrome/dom/dom.properties", 62 ]