tor-browser

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

moz.build (997B)


      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 include("../templates.mozbuild")
      8 
      9 DIRS += [
     10     "aboutdebugging",
     11     "accessibility",
     12     "anti-tracking",
     13     "application",
     14     "debugger",
     15     "dom",
     16     "framework",
     17     "fronts",
     18     "inspector",
     19     "jsonview",
     20     "locales",
     21     "memory",
     22     "netmonitor",
     23     "performance-new",
     24     "preferences",
     25     "responsive",
     26     "shared",
     27     "storage",
     28     "styleeditor",
     29     "themes",
     30     "webconsole",
     31 ]
     32 
     33 JAR_MANIFESTS += ["jar.mn"]
     34 
     35 DevToolsModules(
     36     "constants.js",
     37     "definitions.js",
     38     "devtools-client.js",
     39     "menus.js",
     40 )
     41 
     42 if not CONFIG["MOZILLA_OFFICIAL"]:
     43     DevToolsModules(
     44         "devtools-experimental-prefs.js",
     45     )
     46 
     47 with Files("**"):
     48     BUG_COMPONENT = ("DevTools", "General")