moz.build (3334B)
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 = ("Firefox", "General") 9 10 SPHINX_TREES["sslerrorreport"] = "content/docs/sslerrorreport" 11 SPHINX_TREES["tabbrowser"] = "content/docs/tabbrowser" 12 13 with Files("content/docs/sslerrorreport/**"): 14 SCHEDULES.exclusive = ["docs"] 15 16 MOCHITEST_CHROME_MANIFESTS += [ 17 "content/test/chrome/chrome.toml", 18 ] 19 20 BROWSER_CHROME_MANIFESTS += [ 21 "content/test/about/browser.toml", 22 "content/test/alerts/browser.toml", 23 "content/test/backforward/browser.toml", 24 "content/test/caps/browser.toml", 25 "content/test/captivePortal/browser.toml", 26 "content/test/contentTheme/browser.toml", 27 "content/test/contextMenu/browser.toml", 28 "content/test/favicons/browser.toml", 29 "content/test/forms/browser.toml", 30 "content/test/framebusting/browser.toml", 31 "content/test/fullscreen/browser.toml", 32 "content/test/general/browser.toml", 33 "content/test/gesture/browser.toml", 34 "content/test/historySwipeAnimation/browser.toml", 35 "content/test/keyboard/browser.toml", 36 "content/test/keyboard/browserSidebarRevamp.toml", 37 "content/test/linkHandling/browser.toml", 38 "content/test/menubar/browser.toml", 39 "content/test/metaTags/browser.toml", 40 "content/test/notificationbox/browser.toml", 41 "content/test/outOfProcess/browser.toml", 42 "content/test/pageActions/browser.toml", 43 "content/test/pageinfo/browser.toml", 44 "content/test/pageStyle/browser.toml", 45 "content/test/permissions/browser.toml", 46 "content/test/plugins/browser.toml", 47 "content/test/popupNotifications/browser.toml", 48 "content/test/popups/browser.toml", 49 "content/test/protectionsUI/browser.toml", 50 "content/test/referrer/browser.toml", 51 "content/test/sanitize/browser.toml", 52 "content/test/scroll-to-text-fragment/browser.toml", 53 "content/test/sidebar/browser.toml", 54 "content/test/sidebar/browserSidebarRevamp.toml", 55 "content/test/siteIdentity/browser.toml", 56 "content/test/startup/browser.toml", 57 "content/test/static/browser.toml", 58 "content/test/sync/browser.toml", 59 "content/test/tabcrashed/browser.toml", 60 "content/test/tabcrashed/browser_aboutRestartRequired.toml", 61 "content/test/tabcrashed/browser_aboutRestartRequired_noForkServer.toml", 62 "content/test/tabdialogs/browser.toml", 63 "content/test/tabPrompts/browser.toml", 64 "content/test/touch/browser.toml", 65 "content/test/utilityOverlay/browser.toml", 66 "content/test/webextensions/browser.toml", 67 "content/test/webrtc/browser.toml", 68 "content/test/webrtc/gracePeriod/browser.toml", 69 "content/test/zoom/browser.toml", 70 ] 71 72 DIRS += [ 73 "content/test/performance/", 74 "content/test/fullscreen/", 75 ] 76 77 PERFTESTS_MANIFESTS += ["content/test/perftest.toml"] 78 79 DEFINES["MOZ_APP_VERSION"] = CONFIG["MOZ_APP_VERSION"] 80 DEFINES["MOZ_APP_VERSION_DISPLAY"] = CONFIG["MOZ_APP_VERSION_DISPLAY"] 81 82 # Do not include the Firefox app-license.html in about:license. 83 # tor-browser#43901. 84 85 if CONFIG["BASE_BROWSER_UPDATE"]: 86 DEFINES["BASE_BROWSER_UPDATE"] = True 87 88 JAR_MANIFESTS += ["jar.mn"]