Commit f1d4307f authored by Dan Ballard's avatar Dan Ballard Committed by Richard Pospesel
Browse files

fixup! Bug 41089: Add tor-browser build scripts + Makefile to tor-browser

parent 0db9a71f
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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
+9 −0
Original line number Diff line number Diff line
@@ -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)

+8 −0
Original line number Diff line number Diff line
#!/bin/bash
set -e
IDE=$1
DEV_ROOT=$2

export MACH_USE_SYSTEM_PYTHON=1
cd $DEV_ROOT
./mach ide $IDE