You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jshin e726c5b59e
deps: backport 4e18190 from V8 upstream
9 years ago
..
benchmarks deps: update v8 to 3.29.93.1 10 years ago
build deps: cherry pick d7f813b4 from V8 upstream 7 years ago
include deps: backport 4e18190 from V8 upstream 7 years ago
infra deps: upgrade V8 to 4.5.103.24 9 years ago
samples deps: upgrade V8 to 4.5.103.30 9 years ago
src deps: backport 4e18190 from V8 upstream 7 years ago
test deps: backport 4e18190 from V8 upstream 7 years ago
testing deps: upgrade V8 to 4.5.103.24 9 years ago
tools deps: backport 9c927d0f01 from V8 upstream 8 years ago
.clang-format deps: update v8 to 3.24.40 11 years ago
.gitignore deps: upgrade V8 to 4.5.103.24 9 years ago
.ycm_extra_conf.py deps: upgrade v8 to 4.2.77.13 10 years ago
AUTHORS deps: backport 75e43a6 from v8 upstream 9 years ago
BUILD.gn deps: upgrade V8 to 4.5.103.30 9 years ago
ChangeLog deps: upgrade V8 to 4.5.103.24 9 years ago
DEPS deps: upgrade V8 to 4.5.103.24 9 years ago
LICENSE deps: upgrade V8 to 4.5.103.24 9 years ago
LICENSE.strongtalk Upgrade V8 to 3.1.2 14 years ago
LICENSE.v8 Upgrade V8 to 3.1.2 14 years ago
LICENSE.valgrind Upgrade V8 to 3.1.2 14 years ago
Makefile deps: upgrade V8 to 4.5.103.24 9 years ago
Makefile.android deps: upgrade V8 to 4.5.103.24 9 years ago
Makefile.nacl deps: upgrade v8 to 3.30.37 10 years ago
OWNERS deps: upgrade v8 to 4.2.77.13 10 years ago
PRESUBMIT.py deps: update v8 to 4.4.63.9 9 years ago
README.md deps: update v8 to 4.3.61.21 9 years ago
WATCHLISTS deps: update v8 to 4.4.63.9 9 years ago
codereview.settings deps: upgrade V8 to 4.5.103.33 9 years ago

README.md

V8 JavaScript Engine

V8 is Google's open source JavaScript engine.

V8 implements ECMAScript as specified in ECMA-262.

V8 is written in C++ and is used in Google Chrome, the open source browser from Google.

V8 can run standalone, or can be embedded into any C++ application.

V8 Project page: https://code.google.com/p/v8/

Getting the Code

Checkout depot tools, and run

    fetch v8

This will checkout V8 into the directory v8 and fetch all of its dependencies. To stay up to date, run

    git pull origin
    gclient sync

For fetching all branches, add the following into your remote configuration in .git/config:

    fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
    fetch = +refs/tags/*:refs/tags/*