Home | History | Annotate | only in /external/v8
Up to higher level directory
NameDateSize
.clang-format05-Oct-2017161
.gn05-Oct-20171.9K
.landmines05-Oct-2017477
.ycm_extra_conf.py05-Oct-20175.7K
Android.base.mk05-Oct-20171.8K
Android.d8.mk05-Oct-20171.3K
Android.libv8.mk05-Oct-2017455
Android.mk05-Oct-20171.2K
Android.mkpeephole.mk05-Oct-2017935
Android.platform.mk05-Oct-2017672
Android.sampler.mk05-Oct-2017371
Android.v8.mk05-Oct-201720.3K
Android.v8common.mk05-Oct-20171,000
Android.v8gen.mk05-Oct-20172.7K
AUTHORS05-Oct-20174.6K
base/05-Oct-2017
benchmarks/05-Oct-2017
BUILD.gn05-Oct-201784.7K
build_overrides/05-Oct-2017
ChangeLog05-Oct-2017568.5K
CODE_OF_CONDUCT.md05-Oct-2017459
codereview.settings05-Oct-2017308
DEPS05-Oct-20179.6K
docs/05-Oct-2017
genmakefiles.py05-Oct-201711.4K
gni/05-Oct-2017
gypfiles/05-Oct-2017
include/05-Oct-2017
infra/05-Oct-2017
LICENSE05-Oct-20172.8K
LICENSE.fdlibm05-Oct-2017250
LICENSE.strongtalk05-Oct-20171.4K
LICENSE.v805-Oct-20171.5K
LICENSE.valgrind05-Oct-20172K
Makefile05-Oct-201717.3K
Makefile.android05-Oct-20173.3K
MODULE_LICENSE_BSD05-Oct-20170
NOTICE05-Oct-20177K
OWNERS05-Oct-2017651
PRESUBMIT.py05-Oct-201711K
README.md05-Oct-2017975
samples/05-Oct-2017
snapshot_toolchain.gni05-Oct-20174.3K
src/05-Oct-2017
testing/05-Oct-2017
tools/05-Oct-2017
V8_MERGE_REVISION05-Oct-201767
WATCHLISTS05-Oct-20173.2K

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