• Home
Name Date Size #Lines LOC

..--

base/trace_event/common/03-May-2024-1,094643

benchmarks/03-May-2024-12,8759,521

build/03-May-2024-87,35671,106

build_overrides/03-May-2024-4332

buildtools/03-May-2024-

docs/03-May-2024-32

gni/03-May-2024-252225

gypfiles/03-May-2024-4,7074,178

include/03-May-2024-11,4205,226

infra/03-May-2024-774675

samples/03-May-2024-1,348874

src/03-May-2024-979,745721,280

test/03-May-2024-1,286,8501,095,340

testing/03-May-2024-381324

third_party/03-May-2024-182,038158,962

tools/03-May-2024-132,012100,863

.gitignoreD03-May-2024387 3736

AUTHORSD03-May-20244.3 KiB119117

Android.d8.mkD03-May-20241.3 KiB5639

Android.libv8.mkD03-May-20244.2 KiB14295

Android.mkD03-May-20241,000 329

Android.v8common.mkD03-May-202419.2 KiB616598

BUILD.gnD03-May-202467.7 KiB2,3562,150

CODE_OF_CONDUCT.mdD03-May-2024459 97

ChangeLogD03-May-2024450.9 KiB19,2658,989

CleanSpec.mkD03-May-20244.8 KiB8828

DEPSD03-May-20247.6 KiB245237

LICENSED03-May-20242.8 KiB5848

LICENSE.fdlibmD03-May-2024250 75

LICENSE.strongtalkD03-May-20241.4 KiB3024

LICENSE.v8D03-May-20241.5 KiB2724

LICENSE.valgrindD03-May-20242 KiB4635

MakefileD03-May-202418.6 KiB531365

Makefile.androidD03-May-20243.3 KiB7335

Makefile.naclD03-May-20244.2 KiB9852

OWNERSD03-May-2024584 2928

PRESUBMIT.pyD03-May-202410.1 KiB263187

README.mdD03-May-2024975 4124

V8_MERGE_REVISIOND03-May-202467 32

WATCHLISTSD03-May-20243.2 KiB10297

codereview.settingsD03-May-2024308 98

snapshot_toolchain.gniD03-May-20243.6 KiB7772

README.md

1V8 JavaScript Engine
2=============
3
4V8 is Google's open source JavaScript engine.
5
6V8 implements ECMAScript as specified in ECMA-262.
7
8V8 is written in C++ and is used in Google Chrome, the open source
9browser from Google.
10
11V8 can run standalone, or can be embedded into any C++ application.
12
13V8 Project page: https://github.com/v8/v8/wiki
14
15
16Getting the Code
17=============
18
19Checkout [depot tools](http://www.chromium.org/developers/how-tos/install-depot-tools), and run
20
21        fetch v8
22
23This will checkout V8 into the directory `v8` and fetch all of its dependencies.
24To stay up to date, run
25
26        git pull origin
27        gclient sync
28
29For fetching all branches, add the following into your remote
30configuration in `.git/config`:
31
32        fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
33        fetch = +refs/tags/*:refs/tags/*
34
35
36Contributing
37=============
38
39Please follow the instructions mentioned on the
40[V8 wiki](https://github.com/v8/v8/wiki/Contributing).
41