Skip to content

Instantly share code, notes, and snippets.

@DeeDeeG
DeeDeeG / setup_to_contribute_to_V8.sh
Created April 28, 2021 16:59
How to get set up to contribute to Chromium's V8 JavaScript engine
# Exit the script if any individual command or command group errors out
set -e
cd ~/
if ! [ -e ~/depot_tools ]; then
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
echo
fi