tor-browser

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

moz.build (1569B)


      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 BROWSER_CHROME_MANIFESTS += ["test/browser.toml"]
      8 XPCSHELL_TESTS_MANIFESTS += ["test/xpcshell/xpcshell.toml"]
      9 TEST_HARNESS_FILES.xpcshell.devtools.client.shared.test += [
     10     "test/shared-head.js",
     11 ]
     12 
     13 DIRS += [
     14     "components",
     15     "fluent-l10n",
     16     "redux",
     17     "remote-debugging",
     18     "source-map-loader",
     19     "sourceeditor",
     20     "vendor",
     21     "widgets",
     22 ]
     23 
     24 DevToolsModules(
     25     "async-store-helper.js",
     26     "autocomplete-popup.js",
     27     "classnames.js",
     28     "css-angle.js",
     29     "curl.js",
     30     "devices.js",
     31     "enum.js",
     32     "events.js",
     33     "focus.mjs",
     34     "inplace-editor.js",
     35     "key-shortcuts.js",
     36     "keycodes.js",
     37     "link.js",
     38     "node-attribute-parser.js",
     39     "output-parser.js",
     40     "prefs.js",
     41     "react-utils.js",
     42     "react-utils.mjs",
     43     "screenshot.js",
     44     "scroll.mjs",
     45     "source-utils.js",
     46     "string-utils.js",
     47     "stylesheet-utils.js",
     48     "suggestion-picker.js",
     49     "telemetry.js",
     50     "theme.js",
     51     "thread-utils.js",
     52     "undo.js",
     53     "unicode-url.js",
     54     "view-source.js",
     55     "WeakMapMap.js",
     56     "webgl-utils.js",
     57     "worker-utils.js",
     58     "workers-listener.js",
     59     "zoom-keys.js",
     60 )
     61 
     62 with Files("**"):
     63     BUG_COMPONENT = ("DevTools", "General")
     64 
     65 with Files("components/**"):
     66     BUG_COMPONENT = ("DevTools", "Shared Components")