tor-browser

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

moz.build (1217B)


      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     "storage",
      9     "utils",
     10 ]
     11 
     12 DevToolsModules(
     13     "console-messages.js",
     14     "css-changes.js",
     15     "css-messages.js",
     16     "css-registered-properties.js",
     17     "document-event.js",
     18     "error-messages.js",
     19     "extensions-backgroundscript-status.js",
     20     "index.js",
     21     "jstracer-state.js",
     22     "jstracer-trace.js",
     23     "last-private-context-exit.js",
     24     "network-events-content.js",
     25     "network-events-stacktraces.js",
     26     "network-events.js",
     27     "parent-process-document-event.js",
     28     "platform-messages.js",
     29     "reflow.js",
     30     "server-sent-events.js",
     31     "sources.js",
     32     "storage-cache.js",
     33     "storage-cookie.js",
     34     "storage-extension.js",
     35     "storage-indexed-db.js",
     36     "storage-local-storage.js",
     37     "storage-session-storage.js",
     38     "stylesheets.js",
     39     "thread-states.js",
     40     "websockets.js",
     41     "webtransport.js",
     42 )
     43 
     44 with Files("*-messages.js"):
     45     BUG_COMPONENT = ("DevTools", "Console")