tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

moz.build (1111B)


      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 with Files("controlCenter/**"):
     11     BUG_COMPONENT = ("Firefox", "Site Identity")
     12 
     13 with Files("devtools/**"):
     14     BUG_COMPONENT = ("DevTools", "General")
     15 
     16 with Files("permissionPrompts/**"):
     17     BUG_COMPONENT = ("Firefox", "Site Permissions")
     18 
     19 with Files("preferences/**"):
     20     BUG_COMPONENT = ("Firefox", "Settings UI")
     21 
     22 BROWSER_CHROME_MANIFESTS += [
     23     # Each test is in it's own directory so it gets run in a clean profile with
     24     # run-by-dir.
     25     "controlCenter/browser.toml",
     26     "devtools/browser.toml",
     27     "permissionPrompts/browser.toml",
     28     "preferences/browser.toml",
     29     "primaryUI/browser.toml",
     30     "tests/browser/browser.toml",
     31 ]
     32 
     33 TEST_DIRS += [
     34     "mozscreenshots/extension",
     35 ]
     36 
     37 XPCSHELL_TESTS_MANIFESTS += ["tests/xpcshell/xpcshell.toml"]