0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/v8
Refael Ackermann 3b5773fee3 build,deps: move gypfiles out 2/2 - moving
* move all used files to `tools/v8_gypfiles` directory
* fix references in node configuration

PR-URL: https://github.com/nodejs/node/pull/26685
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
2019-03-28 16:39:16 -04:00
..
base/trace_event/common deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
benchmarks deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
build_overrides
custom_deps
docs
gni deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
include deps: silence irrelevant V8 warning 2019-03-28 16:38:45 -04:00
infra deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
samples
src deps: V8: cherry-pick 6 commits 2019-03-28 16:38:20 -04:00
test deps: V8: cherry-pick 6 commits 2019-03-28 16:38:20 -04:00
testing
third_party deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
tools deps: update postmortem metadata generation script 2019-03-28 16:38:36 -04:00
.clang-format
.clang-tidy deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
.editorconfig
.git-blame-ignore-revs
.gitattributes
.gitignore deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
.gn
.vpython deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
.ycm_extra_conf.py
AUTHORS deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
BUILD.gn deps: V8: cherry-pick 6 commits 2019-03-28 16:38:20 -04:00
ChangeLog deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
CODE_OF_CONDUCT.md
codereview.settings
DEPS deps: update V8 to 7.4.288.13 2019-03-28 16:36:18 -04:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
OWNERS deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
PRESUBMIT.py deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
README.md
snapshot_toolchain.gni deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
WATCHLISTS

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.