linux_external_browser_config.py (666B)
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 VENV_PATH = "%s/build/venv" % os.getcwd() 8 9 config = { 10 "log_name": "raptor", 11 "installer_path": "installer.exe", 12 "virtualenv_path": VENV_PATH, 13 "title": os.uname()[1].lower().split(".")[0], 14 "default_actions": [ 15 "clobber", 16 "download-and-extract", 17 "populate-webroot", 18 "create-virtualenv", 19 "install-chromium-distribution", 20 "run-tests", 21 ], 22 "tooltool_cache": "/builds/tooltool_cache", 23 }