Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.gitignore | 24-Aug-2016 | 387 | |
Android.d8.mk | 24-Aug-2016 | 1.2K | |
Android.libv8.mk | 24-Aug-2016 | 4.2K | |
Android.mk | 24-Aug-2016 | 1,000 | |
Android.v8common.mk | 24-Aug-2016 | 18.3K | |
AUTHORS | 24-Aug-2016 | 4K | |
base/ | 24-Aug-2016 | ||
benchmarks/ | 24-Aug-2016 | ||
build/ | 24-Aug-2016 | ||
BUILD.gn | 24-Aug-2016 | 57.4K | |
buildtools/ | 24-Aug-2016 | ||
ChangeLog | 24-Aug-2016 | 354.9K | |
CleanSpec.mk | 24-Aug-2016 | 4.7K | |
codereview.settings | 24-Aug-2016 | 308 | |
DEPS | 24-Aug-2016 | 5.8K | |
docs/ | 24-Aug-2016 | ||
include/ | 24-Aug-2016 | ||
infra/ | 24-Aug-2016 | ||
LICENSE | 24-Aug-2016 | 2.8K | |
LICENSE.strongtalk | 24-Aug-2016 | 1.4K | |
LICENSE.v8 | 24-Aug-2016 | 1.5K | |
LICENSE.valgrind | 24-Aug-2016 | 2K | |
Makefile | 24-Aug-2016 | 17.3K | |
Makefile.android | 24-Aug-2016 | 3.2K | |
Makefile.nacl | 24-Aug-2016 | 4.2K | |
MODULE_LICENSE_BSD | 24-Aug-2016 | 0 | |
NOTICE | 24-Aug-2016 | 1.6K | |
OWNERS | 24-Aug-2016 | 489 | |
PRESUBMIT.py | 24-Aug-2016 | 10.8K | |
README.md | 24-Aug-2016 | 975 | |
samples/ | 24-Aug-2016 | ||
snapshot_toolchain.gni | 24-Aug-2016 | 2.3K | |
src/ | 24-Aug-2016 | ||
test/ | 24-Aug-2016 | ||
testing/ | 24-Aug-2016 | ||
third_party/ | 24-Aug-2016 | ||
tools/ | 24-Aug-2016 | ||
V8_MERGE_REVISION | 24-Aug-2016 | 67 | |
WATCHLISTS | 24-Aug-2016 | 2.9K |
1 V8 JavaScript Engine 2 ============= 3 4 V8 is Google's open source JavaScript engine. 5 6 V8 implements ECMAScript as specified in ECMA-262. 7 8 V8 is written in C++ and is used in Google Chrome, the open source 9 browser from Google. 10 11 V8 can run standalone, or can be embedded into any C++ application. 12 13 V8 Project page: https://github.com/v8/v8/wiki 14 15 16 Getting the Code 17 ============= 18 19 Checkout [depot tools](http://www.chromium.org/developers/how-tos/install-depot-tools), and run 20 21 fetch v8 22 23 This will checkout V8 into the directory `v8` and fetch all of its dependencies. 24 To stay up to date, run 25 26 git pull origin 27 gclient sync 28 29 For fetching all branches, add the following into your remote 30 configuration in `.git/config`: 31 32 fetch = +refs/branch-heads/*:refs/remotes/branch-heads/* 33 fetch = +refs/tags/*:refs/tags/* 34 35 36 Contributing 37 ============= 38 39 Please follow the instructions mentioned on the 40 [V8 wiki](https://github.com/v8/v8/wiki/Contributing). 41