Go to file
v8-autoroll 73e7def907 Update V8 DEPS.
Rolling v8/build: 8222c43..5aa28c4

Rolling v8/third_party/catapult: https://chromium.googlesource.com/catapult/+log/f384e37..744dac9

Rolling v8/tools/clang: 3d55f9c..2a49b96

Rolling v8/tools/luci-go: d882048..ff0709d

TBR=machenbach@chromium.org,hablich@chromium.org,sergiyb@chromium.org

Change-Id: Ic6c29711b62f4b056b4ed50e022edca5a33ce0b7
Reviewed-on: https://chromium-review.googlesource.com/898702
Reviewed-by: v8 autoroll <v8-autoroll@chromium.org>
Commit-Queue: v8 autoroll <v8-autoroll@chromium.org>
Cr-Commit-Position: refs/heads/master@{#51049}
2018-02-02 04:58:42 +00:00
benchmarks
build_overrides
docs
gni
gypfiles [turbofan] LoopVariableOptimizer: use generic FunctionalList implementation 2018-02-01 15:48:09 +00:00
include New API for capturing embedder object graph in heap snapshot. 2018-02-01 08:05:14 +00:00
infra
samples
src [heap] Remove heap dependency from FreeList and restructure surrounding code a bit. 2018-02-01 21:52:56 +00:00
test [parsing] Provide location for function redeclaration error. 2018-02-01 20:46:11 +00:00
testing
third_party
tools [heap-stats] Log uncompiled JSFunctions 2018-02-01 16:19:18 +00:00
.clang-format
.editorconfig
.git-blame-ignore-revs
.gitignore [build] Enable downloading mips toolchain via runhooks 2018-01-31 14:38:43 +00:00
.gn
.vpython
.ycm_extra_conf.py
AUTHORS
BUILD.gn Revert "[builtins] Add .incbin cctest" 2018-02-01 17:34:32 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
DEPS Update V8 DEPS. 2018-02-02 04:58:42 +00:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile
Makefile.android
OWNERS
PRESUBMIT.py
README.md
snapshot_toolchain.gni
WATCHLISTS

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.