Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 V8 JavaScript Engine | 1 V8 JavaScript Engine |
| 2 ============= | 2 ============= |
| 3 | 3 |
| 4 V8 is Google's open source JavaScript engine. | 4 V8 is Google's open source JavaScript engine. |
| 5 | 5 |
| 6 V8 implements ECMAScript as specified in ECMA-262. | 6 V8 implements ECMAScript as specified in ECMA-262. |
| 7 | 7 |
| 8 V8 is written in C++ and is used in Google Chrome, the open source | 8 V8 is written in C++ and is used in Google Chrome, the open source |
| 9 browser from Google. | 9 browser from Google. |
| 10 | 10 |
| 11 V8 can run standalone, or can be embedded into any C++ application. | 11 V8 can run standalone, or can be embedded into any C++ application. |
| 12 | 12 |
| 13 V8 Project page: https://code.google.com/p/v8/ | 13 V8 Project page: https://code.google.com/p/v8/ |
| 14 | 14 |
| 15 | 15 |
| 16 Getting the Code | 16 Getting the Code |
| 17 ============= | 17 ============= |
| 18 | 18 |
| 19 V8 Git repository: https://chromium.googlesource.com/v8/v8.git | 19 Checkout [depot tools](http://www.chromium.org/developers/how-tos/install-depot- tools), and run |
| 20 GitHub mirror: https://github.com/v8/v8-git-mirror | 20 |
| 21 > `fetch v8` | |
| 22 | |
| 23 This will checkout V8 into the directory `v8` and fetch all of its dependencies. | |
| 24 To stay up to date, run | |
| 25 | |
| 26 > `git pull origin` | |
|
tfarina
2014/12/08 13:14:58
this can be 'git pull --rebase' or if you are on a
| |
| 27 > `gclient sync` | |
| 21 | 28 |
| 22 For fetching all branches, add the following into your remote | 29 For fetching all branches, add the following into your remote |
| 23 configuration in `.git/config`: | 30 configuration in `.git/config`: |
| 24 | 31 |
| 25 fetch = +refs/branch-heads/*:refs/remotes/branch-heads/* | 32 fetch = +refs/branch-heads/*:refs/remotes/branch-heads/* |
| 26 fetch = +refs/tags/*:refs/tags/* | 33 fetch = +refs/tags/*:refs/tags/* |
| OLD | NEW |