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.
 
 
 
 
 
 
Erin Spiceland be2a5b323e
deps: cherry-pick f4a2b7f3 from V8 upstream.
7 years ago
..
base/trace_event/common deps: update V8 to 6.1.534.36 7 years ago
benchmarks deps: update v8 to 3.29.93.1 10 years ago
build_overrides deps: update V8 to 6.1.534.36 7 years ago
docs deps: upgrade to V8 4.9.385.18 9 years ago
gni deps: update V8 to 6.1.534.36 7 years ago
gypfiles deps: update V8 to 6.1.534.36 7 years ago
include deps: update V8 to 6.1.534.42 7 years ago
infra deps: update V8 to 6.1.534.36 7 years ago
samples deps: update V8 to 5.6.326.55 8 years ago
src deps: cherry-pick f4a2b7f3 from V8 upstream. 7 years ago
test deps: V8: cherry-pick 163d360 from upstream 7 years ago
testing deps: update V8 to 5.4.500.27 8 years ago
third_party deps: update V8 to 6.1.534.36 7 years ago
tools deps: add postmortem metadata for V8 TurboFan 7 years ago
.clang-format deps: update V8 to 5.7.492.69 8 years ago
.gitignore deps: update V8 to 6.1.534.36 7 years ago
.gn deps: update V8 to 6.0.286.52 7 years ago
.ycm_extra_conf.py deps: update V8 to 5.1.281.69 8 years ago
AUTHORS deps: update V8 to 6.1.534.36 7 years ago
BUILD.gn deps: update V8 to 6.1.534.36 7 years ago
CODE_OF_CONDUCT.md deps: update V8 to 5.1.281.69 8 years ago
ChangeLog deps: update V8 to 6.1.534.36 7 years ago
DEPS deps: update V8 to 6.1.534.36 7 years ago
LICENSE deps: upgrade V8 to 4.5.103.24 9 years ago
LICENSE.fdlibm deps: update V8 to 5.4.500.27 8 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: update V8 to 6.1.534.36 7 years ago
Makefile.android deps: update V8 to 5.4.500.27 8 years ago
OWNERS deps: update V8 to 6.1.534.36 7 years ago
PRESUBMIT.py deps: update V8 to 6.1.534.36 7 years ago
README.md deps: upgrade to V8 4.9.385.18 9 years ago
WATCHLISTS deps: update V8 to 5.4.500.27 8 years ago
codereview.settings deps: update V8 to 6.1.534.36 7 years ago
snapshot_toolchain.gni deps: update V8 to 6.1.534.36 7 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://github.com/v8/v8/wiki

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/*

Contributing

Please follow the instructions mentioned on the V8 wiki.