Jun Yuan Tan 3909103724 Update v8 source 1 year ago
..
base 3909103724 Update v8 source 1 year ago
bazel 3909103724 Update v8 source 1 year ago
build 3909103724 Update v8 source 1 year ago
build_overrides 3909103724 Update v8 source 1 year ago
buildtools 3909103724 Update v8 source 1 year ago
custom_deps 3909103724 Update v8 source 1 year ago
docs 3909103724 Update v8 source 1 year ago
gni 3909103724 Update v8 source 1 year ago
include 3909103724 Update v8 source 1 year ago
infra 3909103724 Update v8 source 1 year ago
samples 3909103724 Update v8 source 1 year ago
src 3909103724 Update v8 source 1 year ago
test 3909103724 Update v8 source 1 year ago
testing 3909103724 Update v8 source 1 year ago
third_party 3909103724 Update v8 source 1 year ago
tools 3909103724 Update v8 source 1 year ago
.bazelrc 3909103724 Update v8 source 1 year ago
.clang-format 3909103724 Update v8 source 1 year ago
.clang-tidy 3909103724 Update v8 source 1 year ago
.editorconfig 3909103724 Update v8 source 1 year ago
.flake8 3909103724 Update v8 source 1 year ago
.gn 3909103724 Update v8 source 1 year ago
.landmines 3909103724 Update v8 source 1 year ago
.mailmap 3909103724 Update v8 source 1 year ago
.style.yapf 3909103724 Update v8 source 1 year ago
.vpython 3909103724 Update v8 source 1 year ago
.vpython3 3909103724 Update v8 source 1 year ago
.ycm_extra_conf.py 3909103724 Update v8 source 1 year ago
AUTHORS 3909103724 Update v8 source 1 year ago
BUILD.bazel 3909103724 Update v8 source 1 year ago
BUILD.gn 3909103724 Update v8 source 1 year ago
CODE_OF_CONDUCT.md 3909103724 Update v8 source 1 year ago
COMMON_OWNERS 3909103724 Update v8 source 1 year ago
DEPS 3909103724 Update v8 source 1 year ago
DIR_METADATA 3909103724 Update v8 source 1 year ago
ENG_REVIEW_OWNERS 3909103724 Update v8 source 1 year ago
INFRA_OWNERS 3909103724 Update v8 source 1 year ago
INTL_OWNERS 3909103724 Update v8 source 1 year ago
LICENSE 3909103724 Update v8 source 1 year ago
LICENSE.fdlibm 3909103724 Update v8 source 1 year ago
LICENSE.strongtalk 3909103724 Update v8 source 1 year ago
LICENSE.v8 3909103724 Update v8 source 1 year ago
LOONG_OWNERS 3909103724 Update v8 source 1 year ago
MIPS_OWNERS 3909103724 Update v8 source 1 year ago
OWNERS 3909103724 Update v8 source 1 year ago
PPC_OWNERS 3909103724 Update v8 source 1 year ago
PRESUBMIT.py 3909103724 Update v8 source 1 year ago
README.md 3909103724 Update v8 source 1 year ago
RISCV_OWNERS 3909103724 Update v8 source 1 year ago
S390_OWNERS 3909103724 Update v8 source 1 year ago
WATCHLISTS 3909103724 Update v8 source 1 year ago
WORKSPACE 3909103724 Update v8 source 1 year ago
codereview.settings 3909103724 Update v8 source 1 year ago

README.md

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.