Name | Date | Size | |
---|---|---|---|
.. | 10-Aug-2018 | 12 KiB | |
.clang-format | 10-Aug-2018 | 161 | |
.gitignore | 10-Aug-2018 | 6 | |
.gn | 10-Aug-2018 | 1.9 KiB | |
.landmines | 10-Aug-2018 | 477 | |
.ycm_extra_conf.py | 10-Aug-2018 | 5.7 KiB | |
Android.base.mk | 10-Aug-2018 | 1.8 KiB | |
Android.d8.mk | 10-Aug-2018 | 1.3 KiB | |
Android.libv8.mk | 10-Aug-2018 | 486 | |
Android.mk | 10-Aug-2018 | 1.2 KiB | |
Android.mkpeephole.mk | 10-Aug-2018 | 935 | |
Android.platform.mk | 10-Aug-2018 | 672 | |
Android.sampler.mk | 10-Aug-2018 | 371 | |
Android.v8.mk | 10-Aug-2018 | 20.5 KiB | |
Android.v8common.mk | 10-Aug-2018 | 885 | |
Android.v8gen.mk | 10-Aug-2018 | 2.6 KiB | |
AUTHORS | 10-Aug-2018 | 4.7 KiB | |
base/ | 10-Aug-2018 | 4 KiB | |
benchmarks/ | 10-Aug-2018 | 4 KiB | |
BUILD.gn | 10-Aug-2018 | 88 KiB | |
build_overrides/ | 10-Aug-2018 | 4 KiB | |
ChangeLog | 10-Aug-2018 | 643.8 KiB | |
CODE_OF_CONDUCT.md | 10-Aug-2018 | 459 | |
codereview.settings | 10-Aug-2018 | 308 | |
DEPS | 10-Aug-2018 | 9.6 KiB | |
docs/ | 10-Aug-2018 | 4 KiB | |
genmakefiles.py | 10-Aug-2018 | 11.5 KiB | |
gni/ | 10-Aug-2018 | 4 KiB | |
gypfiles/ | 10-Aug-2018 | 4 KiB | |
include/ | 10-Aug-2018 | 4 KiB | |
infra/ | 10-Aug-2018 | 4 KiB | |
LICENSE | 10-Aug-2018 | 2.8 KiB | |
LICENSE.fdlibm | 10-Aug-2018 | 250 | |
LICENSE.strongtalk | 10-Aug-2018 | 1.4 KiB | |
LICENSE.v8 | 10-Aug-2018 | 1.5 KiB | |
LICENSE.valgrind | 10-Aug-2018 | 2 KiB | |
Makefile | 10-Aug-2018 | 17.4 KiB | |
Makefile.android | 10-Aug-2018 | 3.3 KiB | |
merge.py | 10-Aug-2018 | 2.6 KiB | |
MODULE_LICENSE_BSD | 10-Aug-2018 | 0 | |
NOTICE | 10-Aug-2018 | 7 KiB | |
OWNERS | 10-Aug-2018 | 803 | |
PRESUBMIT.py | 10-Aug-2018 | 11.1 KiB | |
README.md | 10-Aug-2018 | 975 | |
samples/ | 10-Aug-2018 | 4 KiB | |
snapshot_toolchain.gni | 10-Aug-2018 | 4.3 KiB | |
src/ | 10-Aug-2018 | 12 KiB | |
testing/ | 10-Aug-2018 | 4 KiB | |
tools/ | 10-Aug-2018 | 4 KiB | |
V8_MERGE_REVISION | 10-Aug-2018 | 66 | |
WATCHLISTS | 10-Aug-2018 | 3.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