Go to file
v8-ci-autoroll-builder 3557e2021f Update V8 DEPS.
Rolling v8/build: 15fd848..00a14de

Rolling v8/third_party/googletest/src: bf0fe87..5395345

Rolling v8/tools/clang: e3d2982..ae5343c

TBR=machenbach@chromium.org,tmrts@chromium.org

Change-Id: I22c818999d745103e09d7438839e03ca80ab7e08
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1944232
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@{#65269}
2019-12-01 04:02:11 +00:00
build_overrides
custom_deps
docs
gni [build] Move split_static_library.gni from Chromium repo 2019-11-04 15:45:54 +00:00
include [api] Remove deprecated wasm type and methods 2019-11-28 13:55:15 +00:00
infra [test] Bump shards on slow builders 2019-11-25 13:23:07 +00:00
samples
src [heap] Remove sweeping complexity around page iterability. 2019-11-29 20:39:55 +00:00
test [cctest] Check compilation result in v8_compile 2019-11-29 15:43:52 +00:00
testing
third_party [DevTools] Roll inspector_protocol (V8) (strtod) 2019-11-27 17:35:47 +00:00
tools [goma] Whitespace to trigger builders 2019-11-29 13:19:04 +00:00
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore Remove MIPS(64) builders from V8 infra 2019-09-16 11:20:11 +00:00
.gn
.vpython
.ycm_extra_conf.py
AUTHORS [builtins] Port Number.prototype.toString to Torque 2019-11-05 11:00:26 +00:00
BUILD.gn [promises] Port PromiseConstructor to Torque. 2019-11-26 15:07:31 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS Update V8 DEPS. 2019-12-01 04:02:11 +00:00
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS
OWNERS
PPC_OWNERS
PRESUBMIT.py
README.md [docs] Change links from old wiki to v8.dev 2019-03-07 12:13:30 +00:00
S390_OWNERS
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://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.