1
0
Fork 0
arangodb/3rdParty/V8/v5.7.0.0
Wilfried Goesgens ce45df98d7 remove debug print 2017-04-06 14:19:24 +02:00
..
base/trace_event/common switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
benchmarks switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
docs switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
gni switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
gypfiles remove debug print 2017-04-06 14:19:24 +02:00
include switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
infra switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
samples switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
src add .gitignored files 2017-03-14 16:39:53 +01:00
test switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
testing switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
third_party switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
tools switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
.clang-format switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
.gitignore switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
.gn switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
.ycm_extra_conf.py switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
AUTHORS switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
BUILD.gn switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
CODE_OF_CONDUCT.md switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
ChangeLog switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
DEPS switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
LICENSE switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
LICENSE.fdlibm switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
LICENSE.strongtalk switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
LICENSE.v8 switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
LICENSE.valgrind switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
Makefile switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
Makefile.android switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
OWNERS switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
PRESUBMIT.py switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
README.md switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
WATCHLISTS switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
codereview.settings switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00
snapshot_toolchain.gni switch V8 from git submodule to flat copy 2017-03-14 16:02:40 +01:00

README.md

V8 JavaScript Engine

V8 is Google's open source JavaScript engine.

V8 implements ECMAScript as specified in ECMA-262.

V8 is written in C++ and is used in Google Chrome, the open source browser from Google.

V8 can run standalone, or can be embedded into any C++ application.

V8 Project page: https://github.com/v8/v8/wiki

Getting the Code

Checkout depot tools, and run

    fetch v8

This will checkout V8 into the directory v8 and fetch all of its dependencies. To stay up to date, run

    git pull origin
    gclient sync

For fetching all branches, add the following into your remote configuration in .git/config:

    fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
    fetch = +refs/tags/*:refs/tags/*

Contributing

Please follow the instructions mentioned on the V8 wiki.