tor-browser

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

moz.build (984B)


      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 MOZ_SRC_FILES += [
      8     "BrowserSearchTelemetry.sys.mjs",
      9     "OpenSearchManager.sys.mjs",
     10     "SearchOneOffs.sys.mjs",
     11     "SearchSERPTelemetry.sys.mjs",
     12     "SearchUIUtils.sys.mjs",
     13     "SERPCategorization.sys.mjs",
     14 ]
     15 
     16 BROWSER_CHROME_MANIFESTS += [
     17     "test/browser/browser.toml",
     18     "test/browser/telemetry/browser.toml",
     19 ]
     20 
     21 MARIONETTE_MANIFESTS += [
     22     "test/marionette/manifest.toml",
     23     "test/marionette/telemetry/manifest.toml",
     24 ]
     25 
     26 XPCSHELL_TESTS_MANIFESTS += ["test/unit/xpcshell.toml"]
     27 
     28 TESTING_JS_MODULES += [
     29     "test/SearchUITestUtils.sys.mjs",
     30 ]
     31 
     32 JAR_MANIFESTS += ["jar.mn"]
     33 
     34 SPHINX_TREES["/browser/search"] = "docs"
     35 
     36 with Files("**"):
     37     BUG_COMPONENT = ("Firefox", "Search")