Home | History | Annotate | only in /external/v8
Up to higher level directory
NameDateSize
.gitignore21-Oct-2016387
Android.d8.mk21-Oct-20161.2K
Android.libv8.mk21-Oct-20164.2K
Android.mk21-Oct-20161,000
Android.v8common.mk21-Oct-201618.3K
AUTHORS21-Oct-20164K
base/21-Oct-2016
benchmarks/21-Oct-2016
build/21-Oct-2016
BUILD.gn21-Oct-201657.4K
buildtools/21-Oct-2016
ChangeLog21-Oct-2016354.9K
CleanSpec.mk21-Oct-20164.7K
codereview.settings21-Oct-2016308
DEPS21-Oct-20165.8K
docs/21-Oct-2016
include/21-Oct-2016
infra/21-Oct-2016
LICENSE21-Oct-20162.8K
LICENSE.strongtalk21-Oct-20161.4K
LICENSE.v821-Oct-20161.5K
LICENSE.valgrind21-Oct-20162K
Makefile21-Oct-201617.3K
Makefile.android21-Oct-20163.2K
Makefile.nacl21-Oct-20164.2K
MODULE_LICENSE_BSD21-Oct-20160
NOTICE21-Oct-20161.6K
OWNERS21-Oct-2016489
PRESUBMIT.py21-Oct-201610.8K
README.md21-Oct-2016975
samples/21-Oct-2016
snapshot_toolchain.gni21-Oct-20162.3K
src/21-Oct-2016
test/21-Oct-2016
testing/21-Oct-2016
third_party/21-Oct-2016
tools/21-Oct-2016
V8_MERGE_REVISION21-Oct-201667
WATCHLISTS21-Oct-20162.9K

README.md

      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