android_mt6572_jiabo/external/v8
2025-09-05 16:56:03 +08:00
..
base/trace_event/common first commit 2025-09-05 16:56:03 +08:00
benchmarks first commit 2025-09-05 16:56:03 +08:00
build first commit 2025-09-05 16:56:03 +08:00
build_overrides first commit 2025-09-05 16:56:03 +08:00
docs first commit 2025-09-05 16:56:03 +08:00
gni first commit 2025-09-05 16:56:03 +08:00
gypfiles first commit 2025-09-05 16:56:03 +08:00
include first commit 2025-09-05 16:56:03 +08:00
infra first commit 2025-09-05 16:56:03 +08:00
samples first commit 2025-09-05 16:56:03 +08:00
src first commit 2025-09-05 16:56:03 +08:00
test first commit 2025-09-05 16:56:03 +08:00
testing first commit 2025-09-05 16:56:03 +08:00
third_party first commit 2025-09-05 16:56:03 +08:00
tools first commit 2025-09-05 16:56:03 +08:00
.gitignore first commit 2025-09-05 16:56:03 +08:00
AUTHORS first commit 2025-09-05 16:56:03 +08:00
BUILD.gn first commit 2025-09-05 16:56:03 +08:00
ChangeLog first commit 2025-09-05 16:56:03 +08:00
CODE_OF_CONDUCT.md first commit 2025-09-05 16:56:03 +08:00
codereview.settings first commit 2025-09-05 16:56:03 +08:00
DEPS first commit 2025-09-05 16:56:03 +08:00
LICENSE first commit 2025-09-05 16:56:03 +08:00
LICENSE.fdlibm first commit 2025-09-05 16:56:03 +08:00
LICENSE.strongtalk first commit 2025-09-05 16:56:03 +08:00
LICENSE.v8 first commit 2025-09-05 16:56:03 +08:00
LICENSE.valgrind first commit 2025-09-05 16:56:03 +08:00
Makefile first commit 2025-09-05 16:56:03 +08:00
Makefile.android first commit 2025-09-05 16:56:03 +08:00
Makefile.nacl first commit 2025-09-05 16:56:03 +08:00
OWNERS first commit 2025-09-05 16:56:03 +08:00
PRESUBMIT.py first commit 2025-09-05 16:56:03 +08:00
README.md first commit 2025-09-05 16:56:03 +08:00
snapshot_toolchain.gni first commit 2025-09-05 16:56:03 +08:00
V8_MERGE_REVISION first commit 2025-09-05 16:56:03 +08:00
WATCHLISTS first commit 2025-09-05 16:56:03 +08: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://github.com/v8/v8/wiki

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 on the V8 wiki.