NameDateSize

..10-Aug-201812 KiB

.clang-format10-Aug-2018161

.gitignore10-Aug-20186

.gn10-Aug-20181.9 KiB

.landmines10-Aug-2018477

.ycm_extra_conf.py10-Aug-20185.7 KiB

Android.base.mk10-Aug-20181.8 KiB

Android.d8.mk10-Aug-20181.3 KiB

Android.libv8.mk10-Aug-2018486

Android.mk10-Aug-20181.2 KiB

Android.mkpeephole.mk10-Aug-2018935

Android.platform.mk10-Aug-2018672

Android.sampler.mk10-Aug-2018371

Android.v8.mk10-Aug-201820.5 KiB

Android.v8common.mk10-Aug-2018885

Android.v8gen.mk10-Aug-20182.6 KiB

AUTHORS10-Aug-20184.7 KiB

base/10-Aug-20184 KiB

benchmarks/10-Aug-20184 KiB

BUILD.gn10-Aug-201888 KiB

build_overrides/10-Aug-20184 KiB

ChangeLog10-Aug-2018643.8 KiB

CODE_OF_CONDUCT.md10-Aug-2018459

codereview.settings10-Aug-2018308

DEPS10-Aug-20189.6 KiB

docs/10-Aug-20184 KiB

genmakefiles.py10-Aug-201811.5 KiB

gni/10-Aug-20184 KiB

gypfiles/10-Aug-20184 KiB

include/10-Aug-20184 KiB

infra/10-Aug-20184 KiB

LICENSE10-Aug-20182.8 KiB

LICENSE.fdlibm10-Aug-2018250

LICENSE.strongtalk10-Aug-20181.4 KiB

LICENSE.v810-Aug-20181.5 KiB

LICENSE.valgrind10-Aug-20182 KiB

Makefile10-Aug-201817.4 KiB

Makefile.android10-Aug-20183.3 KiB

merge.py10-Aug-20182.6 KiB

MODULE_LICENSE_BSD10-Aug-20180

NOTICE10-Aug-20187 KiB

OWNERS10-Aug-2018803

PRESUBMIT.py10-Aug-201811.1 KiB

README.md10-Aug-2018975

samples/10-Aug-20184 KiB

snapshot_toolchain.gni10-Aug-20184.3 KiB

src/10-Aug-201812 KiB

testing/10-Aug-20184 KiB

tools/10-Aug-20184 KiB

V8_MERGE_REVISION10-Aug-201866

WATCHLISTS10-Aug-20183.2 KiB

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