Go to file
v8-ci-autoroll-builder a70a359d41 Update V8 DEPS.
Rolling v8/build: 7ad9ac5..3405bae

Rolling v8/third_party/aemu-linux-x64: pcue74MrtwdptQfnABqz12W-F6Br8-PlTN1pD5o_aQsC..Ov029PFraVEmOQQeqY3kUZj6ERgYTsBY7XgdZYAw76IC

Rolling v8/third_party/catapult: https://chromium.googlesource.com/catapult/+log/03e7ff4..eb9f481

Rolling v8/third_party/depot_tools: dcb5c85..1dcaaa7

Rolling v8/tools/clang: 6ddf849..9f3f85f

TBR=machenbach@chromium.org,tmrts@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com

Change-Id: I60847ebd591bafce6640cc7a137ab82bfc07acd5
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2237960
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@{#68313}
2020-06-11 03:41:51 +00:00
build_overrides tracing: Enable using Perfetto client library from Chromium 2020-05-11 11:17:57 +00:00
custom_deps
docs
gni Integrate fuzzilli into v8 2020-06-03 09:53:24 +00:00
include cppgc: Introduce AllocationHandle 2020-06-10 23:11:20 +00:00
infra Migrate v8_linux64_msan_rel to next-gen format 2020-05-15 14:13:12 +00:00
samples cppgc: Introduce AllocationHandle 2020-06-10 23:11:20 +00:00
src [clang-tidy] Remove unneeded constructor 2020-06-11 00:51:30 +00:00
test cppgc: Introduce AllocationHandle 2020-06-10 23:11:20 +00:00
testing Roll v8/third_party/googletest/src/ 10b1902d8..e3f0319d8 (43 commits) 2020-04-15 07:23:10 +00:00
third_party [torque] format namespaces without indentation 2020-05-12 14:06:17 +00:00
tools [wasm] Remove WasmDebugInfo and InterpreterHandle 2020-06-09 18:21:04 +00:00
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs [infra] Update .git-blame-ignore-revs 2020-03-03 12:59:13 +00:00
.gitattributes
.gitignore Add third_party/jsoncpp/source to .gitignore 2020-04-29 07:20:41 +00:00
.gn
.vpython
.ycm_extra_conf.py
AUTHORS Added API to verify version match on snapshot blob 2020-05-25 08:52:48 +00:00
BUILD.gn cppgc: Introduce AllocationHandle 2020-06-10 23:11:20 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS [owners] Add thibaudm and ecmziegler to COMMON_OWNERS 2020-05-20 18:41:54 +00:00
DEPS Update V8 DEPS. 2020-06-11 03:41:51 +00:00
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS add ftang as owner 2020-04-24 19:19:36 +00:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS
OWNERS
PPC_OWNERS
PRESUBMIT.py Remove the #undef check from the Presubmit for .cc files 2020-01-24 15:24:51 +00:00
README.md
S390_OWNERS
WATCHLISTS Stop watching for API changes in WATCHLISTS 2020-04-08 07:06:45 +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://v8.dev/docs

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 at v8.dev/docs/contribute.