Go to file
v8-ci-autoroll-builder 5b2db71282 Update V8 DEPS.
Rolling v8/build: 66cd756..12badc1

R=v8-waterfall-sheriff@grotations.appspotmail.com,mtv-sf-v8-sheriff@grotations.appspotmail.com

Change-Id: I11dd012d8a4c8775f6ddeac2190df8ce496da986
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3376582
Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
Bot-Commit: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com>
Cr-Commit-Position: refs/heads/main@{#78525}
2022-01-10 03:56:18 +00:00
.github
bazel [bazel] Fix build with older versions of GCC. 2022-01-07 10:13:34 +00:00
build_overrides
custom_deps
docs
gni
include cppgc: Avoid using members on stack in cppgc 2022-01-06 08:30:35 +00:00
infra [infra] Increase timeout (1h → 2h) and bump shards (8 → 10) due to lower performance bots (8 → 4 cpus) 2021-12-21 10:50:34 +00:00
samples
src [riscv64] Add RISCV64 support for wasm-relaxed-simd 2022-01-10 01:40:22 +00:00
test [riscv64] Add RISCV64 support for wasm-relaxed-simd 2022-01-10 01:40:22 +00:00
testing
third_party [inspector] Gracefully ignore non-dictionary values as session state. 2022-01-05 11:12:04 +00:00
tools [Temporal] Part2 Add constructor and simple getters. 2022-01-07 19:18:33 +00:00
.bazelrc [bazel] Fix build with GCC and older versions of Clang. 2022-01-05 19:39:03 +00:00
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.mailmap
.vpython
.vpython3
.ycm_extra_conf.py
AUTHORS Fix gen-keywords-gen-h.py 2022-01-03 16:38:27 +00:00
BUILD.bazel [Temporal] Part2 Add constructor and simple getters. 2022-01-07 19:18:33 +00:00
BUILD.gn [Temporal] Part2 Add constructor and simple getters. 2022-01-07 19:18:33 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS Update V8 DEPS. 2022-01-10 03:56:18 +00:00
DIR_METADATA
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
OWNERS
PPC_OWNERS
PRESUBMIT.py
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS
WORKSPACE [bazel] Use bazel/config from within the main repository. 2022-01-04 22:39:42 +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.