tor-browser

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

macosx_config.py (843B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 import os
      6 
      7 PYTHON = "/usr/bin/env python"
      8 VENV_PATH = "%s/build/venv" % os.getcwd()
      9 ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
     10 INSTALLER_PATH = os.path.join(ABS_WORK_DIR, "installer.dmg")
     11 
     12 config = {
     13    "log_name": "awsy",
     14    "installer_path": INSTALLER_PATH,
     15    "virtualenv_path": VENV_PATH,
     16    "cmd_timeout": 6500,
     17    "exes": {},
     18    "title": os.uname()[1].lower().split(".")[0],
     19    "default_actions": [
     20        "clobber",
     21        "download-and-extract",
     22        "populate-webroot",
     23        "create-virtualenv",
     24        "install",
     25        "run-tests",
     26    ],
     27    "tooltool_cache": os.path.join(os.getcwd(), "tooltool_cache"),
     28 }