This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch tor-browser-91.13.0esr-11.5-1 in repository tor-browser.
commit f1d4307fb949d9cb77c4a2d9d670a89504ea18d9 Author: Dan Ballard dan@mindstab.net AuthorDate: Tue Aug 9 08:08:04 2022 -0700
fixup! Bug 41089: Add tor-browser build scripts + Makefile to tor-browser --- .gitignore | 3 +++ tools/torbrowser/Makefile | 9 +++++++++ tools/torbrowser/ide.sh | 8 ++++++++ 3 files changed, 20 insertions(+)
diff --git a/.gitignore b/.gitignore index ffd0f9faf1458..117d6cbbf9d54 100644 --- a/.gitignore +++ b/.gitignore @@ -168,3 +168,6 @@ testing/raptor/.raptor-venv testing/raptor/raptor-venv testing/raptor/raptor/tests/json/ testing/raptor/webext/raptor/auto_gen_test_config.js + +# Ignore binary base of tor browser +.binaries diff --git a/tools/torbrowser/Makefile b/tools/torbrowser/Makefile index c335db77ae666..92650151560ec 100644 --- a/tools/torbrowser/Makefile +++ b/tools/torbrowser/Makefile @@ -10,6 +10,15 @@ BUILD_OUTPUT = $(DEV_ROOT)/obj-x86_64-pc-linux-gnu config: ./config.sh $(DEV_ROOT)
+ide-vscode: + ./ide.sh vscode $(DEV_ROOT) + +ide-eclipse: + ./ide.sh eclipse $(DEV_ROOT) + +ide-visualstudio: + ./ide.sh visualstudio $(DEV_ROOT) + fetch: ./fetch.sh $(BINARIES)
diff --git a/tools/torbrowser/ide.sh b/tools/torbrowser/ide.sh new file mode 100755 index 0000000000000..73bbdd3461c6c --- /dev/null +++ b/tools/torbrowser/ide.sh @@ -0,0 +1,8 @@ +#!/bin/bash +set -e +IDE=$1 +DEV_ROOT=$2 + +export MACH_USE_SYSTEM_PYTHON=1 +cd $DEV_ROOT +./mach ide $IDE