• Home
Name Date Size #Lines LOC

..--

base/trace_event/common/07-May-2024-1,098647

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

build/07-May-2024-4,3263,851

buildtools/07-May-2024-

docs/07-May-2024-32

include/07-May-2024-10,8745,087

infra/07-May-2024-8877

samples/07-May-2024-1,342868

src/07-May-2024-873,402633,370

test/07-May-2024-1,104,086928,468

testing/07-May-2024-381324

third_party/07-May-2024-12084

tools/07-May-2024-40,53930,291

.gitignoreD07-May-2024387 3736

AUTHORSD07-May-20244 KiB111109

Android.d8.mkD07-May-20241.2 KiB5134

Android.libv8.mkD07-May-20244.2 KiB14093

Android.mkD07-May-20241,000 329

Android.v8common.mkD07-May-202418.3 KiB586572

BUILD.gnD07-May-202457.4 KiB1,9081,771

ChangeLogD07-May-2024354.9 KiB14,4106,985

CleanSpec.mkD07-May-20244.7 KiB8627

DEPSD07-May-20245.8 KiB176169

LICENSED07-May-20242.8 KiB5848

LICENSE.strongtalkD07-May-20241.4 KiB3024

LICENSE.v8D07-May-20241.5 KiB2724

LICENSE.valgrindD07-May-20242 KiB4635

MODULE_LICENSE_BSDD07-May-20240

MakefileD07-May-202417.3 KiB501341

Makefile.androidD07-May-20243.2 KiB7335

Makefile.naclD07-May-20244.2 KiB9852

NOTICED07-May-20241.6 KiB3427

OWNERSD07-May-2024489 2423

PRESUBMIT.pyD07-May-202410.8 KiB278200

README.mdD07-May-2024975 4124

V8_MERGE_REVISIOND07-May-202467 32

WATCHLISTSD07-May-20242.9 KiB8883

codereview.settingsD07-May-2024308 98

snapshot_toolchain.gniD07-May-20242.3 KiB4742

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