tor-browser

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

prod_config_android.py (991B)


      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 file,
      3 # You can obtain one at http://mozilla.org/MPL/2.0/.
      4 import os
      5 
      6 config = {
      7    "options": [
      8        "--prefs-root=%(test_path)s/prefs",
      9        "--config=%(test_path)s/wptrunner.ini",
     10        "--ca-cert-path=%(test_path)s/tests/tools/certs/cacert.pem",
     11        "--host-key-path=%(test_path)s/tests/tools/certs/web-platform.test.key",
     12        "--host-cert-path=%(test_path)s/tests/tools/certs/web-platform.test.pem",
     13        "--certutil-binary=%(xre_path)s/certutil",
     14        "--product=firefox_android",
     15    ],
     16    "binary_path": "/tmp",
     17    "geckodriver": "%(abs_fetches_dir)s/geckodriver",
     18    "hostutils_manifest_path": "testing/config/tooltool-manifests/linux64/hostutils.manifest",
     19    "log_tbpl_level": "info",
     20    "log_raw_level": "info",
     21    "per_test_category": "web-platform",
     22    "tooltool_cache": os.environ.get("TOOLTOOL_CACHE"),
     23 }