tor-browser

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

android_hw_external_browser_config.py (955B)


      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 config = {
      8    "log_name": "raptor",
      9    "title": os.uname()[1].lower().split(".")[0],
     10    "default_actions": [
     11        "clobber",
     12        "download-and-extract",
     13        "populate-webroot",
     14        "create-virtualenv",
     15        "install-chrome-android",
     16        "install-chromium-android",
     17        "install-chromium-distribution",
     18        "run-tests",
     19    ],
     20    "tooltool_cache": "/builds/tooltool_cache",
     21    "download_tooltool": True,
     22    "hostutils_manifest_path": "testing/config/tooltool-manifests/linux64/hostutils.manifest",
     23 }
     24 
     25 # raptor will pick these up in mitmproxy.py, doesn't use the mozharness config
     26 os.environ["TOOLTOOLCACHE"] = config["tooltool_cache"]
     27 os.environ["HOSTUTILS_MANIFEST_PATH"] = config["hostutils_manifest_path"]