Go to file
2017-01-05 15:01:30 +00:00
benchmarks
build_overrides [build] Roll build a3b623a:11a223f 2016-11-29 11:17:15 +00:00
docs
gni [build] Use MSVS 2015 by default. 2016-12-01 08:50:57 +00:00
gypfiles [build] Use MSVS 2015 by default. 2016-12-01 08:50:57 +00:00
include Remove unnecessary v8:: prefixes in include/v8.h 2017-01-04 17:07:07 +00:00
infra CQ config: remove unused hide_ref_in_committed_msg. 2016-12-16 16:41:36 +00:00
samples Reland of land "Turn libbase into a component" (patchset #1 id:1 of https://codereview.chromium.org/2396933002/ ) 2016-10-07 07:56:52 +00:00
src Revert of [turbofan] Improve codegen for 8- and 16-bit memory comparisons on Intel platforms (patchset #3 id:40001 of https://codereview.chromium.org/2605863002/ ) 2017-01-05 14:58:01 +00:00
test Disable automatic handling of SEH exceptions in gtest 2017-01-05 12:22:26 +00:00
testing
third_party [inspector] Roll inspector_protocol to c65b17da8a32bc6ab25b4ebbef1008f23c69e7d1. 2016-12-05 16:22:12 +00:00
tools [tools] Include full benchmark measurement name in error reporting 2017-01-04 23:36:06 +00:00
.clang-format
.gitignore fix typo in .gitignore 2016-12-01 07:49:45 +00:00
.gn [build] Roll build a3b623a:11a223f 2016-11-29 11:17:15 +00:00
.ycm_extra_conf.py
AUTHORS [counters] Add UseCounters for 'f() = 0' syntax 2016-12-27 17:48:40 +00:00
BUILD.gn Add v8_enable_verify_predictable gn args (mirroring the gyp var) 2017-01-05 15:01:30 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
DEPS Update V8 DEPS. 2017-01-05 04:21:05 +00:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile Add v8_os_page_size flag for cross compilation 2016-11-15 14:41:03 +00:00
Makefile.android
OWNERS Add gsathya to top-level OWNERS 2016-12-21 17:49:41 +00:00
PRESUBMIT.py [test] Only run presubmit for changed status files 2016-12-06 11:42:11 +00:00
README.md
snapshot_toolchain.gni
WATCHLISTS [inspector] added devtools-reviews@chromium.org in WATCHLISTS for inspector 2016-09-29 15:16:54 +00:00

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.