Go to file
Pierre Langlois e3addb6eaa [buildtools] Use arch-specific GN on linux.
CIPD provides both amd64 and arm64 binaries for GN, download the correct
one. This way we get the correct GN when checking out V8 on an AArch64
linux host.

Change-Id: I39c2d7a0062eb330bccac9bc71068bc02bf6958b
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3637798
Commit-Queue: Pierre Langlois <pierre.langlois@arm.com>
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/main@{#80469}
2022-05-11 12:24:52 +00:00
.github
bazel [bazel] Include handler-include-posix on m1 macs 2022-04-28 08:49:58 +00:00
build_overrides
custom_deps
docs
gni
include Inspector protocol: Add optional parameter to expose internals 2022-05-10 16:43:25 +00:00
infra [maglev] Enable the maglev variant on FYI bots 2022-05-05 11:44:51 +00:00
samples [test] Add a unittest platform setup mixin 2022-04-06 13:07:43 +00:00
src [runtime][api] Be stricter about microtasks and termination exceptions 2022-05-11 09:24:52 +00:00
test [turbofan] Fix length accessor for RAB/GSAB in compiled code 2022-05-10 15:34:25 +00:00
testing
third_party
tools [foozzie] Disallow flags with too many known failures 2022-05-11 12:22:22 +00:00
.bazelrc
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.mailmap
.style.yapf
.vpython
.vpython3
.ycm_extra_conf.py
AUTHORS Fix typos, shit_right -> shift_right 2022-05-06 07:51:55 +00:00
BUILD.bazel [wasm][refactor] Move WasmGraphAssembler to separate file 2022-05-10 07:22:25 +00:00
BUILD.gn [sandbox] Temporarily disable sandboxed pointers on ChromeOS 2022-05-11 07:03:36 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS [buildtools] Use arch-specific GN on linux. 2022-05-11 12:24:52 +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

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.