tor-browser

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

moz.build (2077B)


      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 DIRS += [
      8     "accessibility",
      9     "addon",
     10     "compatibility",
     11     "descriptors",
     12     "emulation",
     13     "events",
     14     "highlighters",
     15     "inspector",
     16     "network-monitor",
     17     "object",
     18     "resources",
     19     "targets",
     20     "tracer",
     21     "utils",
     22     "watcher",
     23     "webconsole",
     24     "worker",
     25 ]
     26 
     27 DevToolsModules(
     28     "animation-type-longhand.js",
     29     "animation.js",
     30     "array-buffer.js",
     31     "blackboxing.js",
     32     "breakpoint-list.js",
     33     "breakpoint.js",
     34     "common.js",
     35     "css-properties.js",
     36     "device.js",
     37     "environment.js",
     38     "errordocs.js",
     39     "frame.js",
     40     "heap-snapshot-file.js",
     41     "highlighters.js",
     42     "layout.js",
     43     "manifest.js",
     44     "memory.js",
     45     "object.js",
     46     "objects-manager.js",
     47     "page-style.js",
     48     "pause-scoped.js",
     49     "perf.js",
     50     "preference.js",
     51     "process.js",
     52     "reflow.js",
     53     "root.js",
     54     "screenshot-content.js",
     55     "screenshot.js",
     56     "source.js",
     57     "string.js",
     58     "style-rule.js",
     59     "style-sheets.js",
     60     "target-configuration.js",
     61     "thread-configuration.js",
     62     "thread.js",
     63     "tracer.js",
     64     "watcher.js",
     65     "webbrowser.js",
     66     "webconsole.js",
     67 )
     68 
     69 with Files("animation.js"):
     70     BUG_COMPONENT = ("DevTools", "Inspector: Animations")
     71 
     72 with Files("breakpoint.js"):
     73     BUG_COMPONENT = ("DevTools", "Debugger")
     74 
     75 with Files("css-properties.js"):
     76     BUG_COMPONENT = ("DevTools", "Inspector: Rules")
     77 
     78 with Files("memory.js"):
     79     BUG_COMPONENT = ("DevTools", "Memory")
     80 
     81 with Files("performance*"):
     82     BUG_COMPONENT = ("DevTools", "Performance Tools (Profiler/Timeline)")
     83 
     84 with Files("source.js"):
     85     BUG_COMPONENT = ("DevTools", "Debugger")
     86 
     87 with Files("stylesheets.js"):
     88     BUG_COMPONENT = ("DevTools", "Style Editor")
     89 
     90 with Files("webconsole.js"):
     91     BUG_COMPONENT = ("DevTools", "Console")