This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-102.0.1-12.0-1 in repository tor-browser.
The following commit(s) were added to refs/heads/tor-browser-102.0.1-12.0-1 by this push: new f78e524e1a7c6 fixup! Bug 41089: Add tor-browser build scripts + Makefile to tor-browser f78e524e1a7c6 is described below
commit f78e524e1a7c6a02503f7977db3664b0841fe1ee 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 | 7 +++++++ 3 files changed, 19 insertions(+)
diff --git a/.gitignore b/.gitignore index b409ec583766d..b2b8b720c1787 100644 --- a/.gitignore +++ b/.gitignore @@ -193,3 +193,6 @@ config/external/icu4x # Ignore Storybook generated files browser/components/storybook/node_modules/ browser/components/storybook/storybook-static/ + +# 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..5da0c670d8c5b --- /dev/null +++ b/tools/torbrowser/ide.sh @@ -0,0 +1,7 @@ +#!/bin/bash +set -e +IDE=$1 +DEV_ROOT=$2 + +cd $DEV_ROOT +./mach ide $IDE