Home | History | Annotate | only in /external/v8
Up to higher level directory
NameDateSize
.clang-format21-Aug-2018161
.gn21-Aug-20181.9K
.landmines21-Aug-2018477
.ycm_extra_conf.py21-Aug-20185.7K
Android.base.mk21-Aug-20181.8K
Android.d8.mk21-Aug-20181.3K
Android.libv8.mk21-Aug-2018486
Android.mk21-Aug-20181.2K
Android.mkpeephole.mk21-Aug-2018935
Android.platform.mk21-Aug-2018672
Android.sampler.mk21-Aug-2018371
Android.v8.mk21-Aug-201820.5K
Android.v8common.mk21-Aug-2018885
Android.v8gen.mk21-Aug-20182.6K
AUTHORS21-Aug-20184.7K
base/21-Aug-2018
benchmarks/21-Aug-2018
BUILD.gn21-Aug-201888K
build_overrides/21-Aug-2018
ChangeLog21-Aug-2018643.8K
CODE_OF_CONDUCT.md21-Aug-2018459
codereview.settings21-Aug-2018308
DEPS21-Aug-20189.6K
docs/21-Aug-2018
genmakefiles.py21-Aug-201811.5K
gni/21-Aug-2018
gypfiles/21-Aug-2018
include/21-Aug-2018
infra/21-Aug-2018
LICENSE21-Aug-20182.8K
LICENSE.fdlibm21-Aug-2018250
LICENSE.strongtalk21-Aug-20181.4K
LICENSE.v821-Aug-20181.5K
LICENSE.valgrind21-Aug-20182K
Makefile21-Aug-201817.4K
Makefile.android21-Aug-20183.3K
merge.py21-Aug-20182.6K
MODULE_LICENSE_BSD21-Aug-20180
NOTICE21-Aug-20187K
OWNERS21-Aug-2018803
PRESUBMIT.py21-Aug-201811.1K
README.md21-Aug-2018975
samples/21-Aug-2018
snapshot_toolchain.gni21-Aug-20184.3K
src/21-Aug-2018
testing/21-Aug-2018
tools/21-Aug-2018
V8_MERGE_REVISION21-Aug-201866
WATCHLISTS21-Aug-20183.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