tor-browser

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

moz.build (803B)


      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 += ["dialogs"]
      8 
      9 BROWSER_CHROME_MANIFESTS += ["tests/browser.toml", "tests/siteData/browser.toml"]
     10 MOCHITEST_CHROME_MANIFESTS += ["tests/chrome/chrome.toml"]
     11 
     12 for var in ("MOZ_APP_NAME", "MOZ_MACBUNDLE_NAME"):
     13     DEFINES[var] = CONFIG[var]
     14 
     15 if CONFIG["MOZ_WIDGET_TOOLKIT"] in ("windows", "gtk", "cocoa"):
     16     DEFINES["HAVE_SHELL_SERVICE"] = 1
     17 
     18 if CONFIG["MOZ_UPDATE_AGENT"]:
     19     DEFINES["MOZ_UPDATE_AGENT"] = True
     20 
     21 JAR_MANIFESTS += ["jar.mn"]
     22 
     23 with Files("**"):
     24     BUG_COMPONENT = ("Firefox", "Settings UI")