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

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.