Home | History | Annotate | only in /external/v8
Up to higher level directory
NameDateSize
.clang-format22-Oct-2020161
.gn22-Oct-20201.9K
.landmines22-Oct-2020477
.ycm_extra_conf.py22-Oct-20205.7K
Android.base.bp22-Oct-20201.3K
Android.bp22-Oct-20207.2K
Android.platform.bp22-Oct-2020747
Android.sampler.bp22-Oct-2020249
Android.v8.bp22-Oct-202026.5K
Android.v8gen.bp22-Oct-2020293
AUTHORS22-Oct-20206K
base/22-Oct-2020
benchmarks/22-Oct-2020
BUILD.gn22-Oct-2020109.3K
build_overrides/22-Oct-2020
ChangeLog22-Oct-20201M
CODE_OF_CONDUCT.md22-Oct-2020459
codereview.settings22-Oct-2020242
custom_deps/22-Oct-2020
DEPS22-Oct-202013.9K
docs/22-Oct-2020
genmakefiles.py22-Oct-202010.1K
gni/22-Oct-2020
gnparser/22-Oct-2020
gypfiles/22-Oct-2020
include/22-Oct-2020
infra/22-Oct-2020
LICENSE22-Oct-20203K
LICENSE.fdlibm22-Oct-2020250
LICENSE.strongtalk22-Oct-20201.4K
LICENSE.v822-Oct-20201.5K
LICENSE.valgrind22-Oct-20202K
Makefile22-Oct-202017.4K
Makefile.android22-Oct-20203.3K
merge.py22-Oct-20202.6K
MODULE_LICENSE_BSD22-Oct-20200
NOTICE22-Oct-20207K
OWNERS22-Oct-2020926
OWNERS.android22-Oct-2020156
PRESUBMIT.py22-Oct-202017.2K
README.md22-Oct-2020975
samples/22-Oct-2020
snapshot_toolchain.gni22-Oct-20204.6K
src/22-Oct-2020
testing/22-Oct-2020
third_party/22-Oct-2020
tools/22-Oct-2020
V8_MERGE_REVISION22-Oct-202066
WATCHLISTS22-Oct-20203.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