Go to file
v8-ci-autoroll-builder f6ca5bb395 Update V8 DEPS.
Rolling v8/build: 1fd7544..4fb577f

Rolling v8/tools/clang: 8a781d8..a9c5056

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

Change-Id: I5da862435a82ae938106f5ea0d8a97a1dd4780c0
Reviewed-on: https://chromium-review.googlesource.com/c/1408389
Reviewed-by: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
Cr-Commit-Position: refs/heads/master@{#58762}
2019-01-13 03:46:31 +00:00
benchmarks
build_overrides
custom_deps
docs
gni
include Advance GetProperyNames/GetOwnPropertyNames deprecation 2019-01-08 11:59:19 +00:00
infra [test] Add more test suites for ubsan 2019-01-11 11:51:48 +00:00
samples
src [parser] Allow same-named labelled blocks in if/else statements 2019-01-11 17:40:18 +00:00
test [parser] Allow same-named labelled blocks in if/else statements 2019-01-11 17:40:18 +00:00
testing
third_party
tools [turbolizer] Enable even more tslint checks 2019-01-12 15:47:35 +00:00
.clang-format
.clang-tidy
.editorconfig
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.vpython
.ycm_extra_conf.py
AUTHORS
BUILD.gn [fuzzer] Remove the wasm section fuzzers 2019-01-11 15:18:47 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
DEPS Update V8 DEPS. 2019-01-13 03:46:31 +00:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
OWNERS
PRESUBMIT.py Optionally use halfsiphash for integer hashing. 2019-01-09 15:20:51 +00:00
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.