• Home
Name Date Size #Lines LOC

..--

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

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

build_overrides/03-May-2024-4935

docs/03-May-2024-32

gni/03-May-2024-354311

gypfiles/03-May-2024-4,8084,269

include/03-May-2024-13,2176,090

infra/03-May-2024-923811

samples/03-May-2024-1,318850

src/03-May-2024-1,037,936778,272

testing/03-May-2024-117,21279,188

tools/03-May-2024-87,12763,943

.clang-formatD03-May-2024161 54

.gitignoreD03-May-20246 21

.gnD03-May-20241.9 KiB4944

.landminesD03-May-2024477 1615

.ycm_extra_conf.pyD03-May-20245.7 KiB194108

AUTHORSD03-May-20244.7 KiB131128

Android.base.mkD03-May-20241.8 KiB6460

Android.d8.mkD03-May-20241.3 KiB5333

Android.libv8.mkD03-May-2024455 219

Android.mkD03-May-20241.2 KiB4116

Android.mkpeephole.mkD03-May-2024935 2623

Android.platform.mkD03-May-2024672 2118

Android.sampler.mkD03-May-2024371 1411

Android.v8.mkD03-May-202420.5 KiB628624

Android.v8common.mkD03-May-2024836 4132

Android.v8gen.mkD03-May-20242.6 KiB7269

BUILD.gnD03-May-202488 KiB3,1252,827

CODE_OF_CONDUCT.mdD03-May-2024459 97

ChangeLogD03-May-2024643.8 KiB29,56113,111

DEPSD03-May-20249.6 KiB300292

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

MODULE_LICENSE_BSDD03-May-20240

MakefileD03-May-202417.4 KiB500346

Makefile.androidD03-May-20243.3 KiB7335

NOTICED03-May-20247 KiB158121

OWNERSD03-May-2024803 3938

PRESUBMIT.pyD03-May-202411.1 KiB295212

README.mdD03-May-2024975 4124

V8_MERGE_REVISIOND03-May-202466 22

WATCHLISTSD03-May-20243.2 KiB10297

codereview.settingsD03-May-2024308 98

genmakefiles.pyD03-May-202411.5 KiB303232

merge.pyD03-May-20242.6 KiB9776

snapshot_toolchain.gniD03-May-20244.3 KiB9890

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