nodejs-mozilla/deps/v8
Lu zhiping 557f7faa75 Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
..
base/trace_event/common Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
benchmarks Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
build_overrides Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
custom_deps Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
docs Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
gni Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
include Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
infra Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
src Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
test/torque Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
testing Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
third_party Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
tools Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
.clang-format Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
.clang-tidy Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
.editorconfig Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
.flake8 Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
.git-blame-ignore-revs Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
.gitattributes Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
.gitignore Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
.gn Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
.vpython Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
.ycm_extra_conf.py Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
AUTHORS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
BUILD.gn Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
CODE_OF_CONDUCT.md Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
COMMON_OWNERS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
ChangeLog Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
DEPS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
ENG_REVIEW_OWNERS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
INFRA_OWNERS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
INTL_OWNERS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
LICENSE Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
LICENSE.fdlibm Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
LICENSE.strongtalk Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
LICENSE.v8 Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
LICENSE.valgrind Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
MIPS_OWNERS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
OWNERS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
PPC_OWNERS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
PRESUBMIT.py Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
README.md Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
S390_OWNERS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
WATCHLISTS Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00
codereview.settings Import Upstream version 12.18.1 2022-07-18 11:52:00 +08:00

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.