1
0
Fork 0
arangodb/3rdParty/V8/v7.1.302.28
Frank Celler aa3d3f8e40
Feature/cleanup ccpcheck (#9665)
2019-08-12 11:11:49 +02:00
..
base/trace_event/common Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
benchmarks Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
build_overrides Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
custom_deps Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
docs Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
gni Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
gypfiles Feature/cleanup ccpcheck (#9665) 2019-08-12 11:11:49 +02:00
include Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
infra Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
samples Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
src windows warning as errors, masquerade remaining unfixeable errors (#9249) 2019-06-17 16:21:29 +02:00
test Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
testing Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
third_party Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
tools where did the % go? (#8342) 2019-03-07 14:38:29 +01:00
.clang-format Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
.clang-tidy Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
.editorconfig Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
.git-blame-ignore-revs Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
.gitattributes Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
.gitignore Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
.gn Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
.vpython Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
.ycm_extra_conf.py Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
AUTHORS Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
BUILD.gn Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
CODE_OF_CONDUCT.md Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
ChangeLog Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
DEPS Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
LICENSE Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
LICENSE.fdlibm Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
LICENSE.strongtalk Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
LICENSE.v8 Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
LICENSE.valgrind Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
OWNERS Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
PRESUBMIT.py Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
README.md Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
WATCHLISTS Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
codereview.settings Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +01:00
snapshot_toolchain.gni Feature/upgrade v8 7.1.302.28 (#8088) 2019-02-19 11:15:34 +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.