4 V8 is Google's open source JavaScript engine.
6 V8 implements ECMAScript as specified in ECMA-262.
8 V8 is written in C++ and is used in Google Chrome, the open source
11 V8 can run standalone, or can be embedded into any C++ application.
13 V8 Project page: https://code.google.com/p/v8/
19 Checkout [depot tools](http://www.chromium.org/developers/how-tos/install-depot-tools), and run
23 This will checkout V8 into the directory `v8` and fetch all of its dependencies.
24 To stay up to date, run
29 For fetching all branches, add the following into your remote
30 configuration in `.git/config`:
32 fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
33 fetch = +refs/tags/*:refs/tags/*