NameDateSize

..23-Aug-201612 KiB

.gitignore23-Aug-2016387

Android.d8.mk23-Aug-20161.2 KiB

Android.libv8.mk23-Aug-20164.2 KiB

Android.mk23-Aug-20161,000

Android.v8common.mk23-Aug-201618.3 KiB

AUTHORS23-Aug-20164 KiB

base/23-Aug-20164 KiB

benchmarks/23-Aug-20164 KiB

build/23-Aug-20164 KiB

BUILD.gn23-Aug-201657.4 KiB

buildtools/23-Aug-20164 KiB

ChangeLog23-Aug-2016354.9 KiB

CleanSpec.mk23-Aug-20164.7 KiB

codereview.settings23-Aug-2016308

DEPS23-Aug-20165.8 KiB

docs/23-Aug-20164 KiB

include/23-Aug-20164 KiB

infra/23-Aug-20164 KiB

LICENSE23-Aug-20162.8 KiB

LICENSE.strongtalk23-Aug-20161.4 KiB

LICENSE.v823-Aug-20161.5 KiB

LICENSE.valgrind23-Aug-20162 KiB

Makefile23-Aug-201617.3 KiB

Makefile.android23-Aug-20163.2 KiB

Makefile.nacl23-Aug-20164.2 KiB

MODULE_LICENSE_BSD23-Aug-20160

NOTICE23-Aug-20161.6 KiB

OWNERS23-Aug-2016489

PRESUBMIT.py23-Aug-201610.8 KiB

README.md23-Aug-2016975

samples/23-Aug-20164 KiB

snapshot_toolchain.gni23-Aug-20162.3 KiB

src/23-Aug-201612 KiB

test/23-Aug-20164 KiB

testing/23-Aug-20164 KiB

third_party/23-Aug-20164 KiB

tools/23-Aug-20164 KiB

V8_MERGE_REVISION23-Aug-201667

WATCHLISTS23-Aug-20162.9 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