0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/v8
Yang Guo 17d4368cb1
deps: split v8_monolith target into separate file
Even if we only use v8_monolith build target, other targets
in v8.gyp with possibly outdated file lists are parsed and
could cause build to fail even with --build-v8-with-gn.

PR-URL: https://github.com/nodejs/node/pull/19201
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2018-04-11 13:23:24 -04:00
..
base/trace_event/common deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
benchmarks
build_overrides deps: update V8 to 6.5.254.31 2018-03-07 16:48:52 +01:00
docs
gni deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
gypfiles deps: split v8_monolith target into separate file 2018-04-11 13:23:24 -04:00
include deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
infra deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
samples deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
src deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
test deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
testing deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
third_party deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
tools deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
.clang-format
.editorconfig
.git-blame-ignore-revs
.gitignore deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
.gn
.vpython deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
.ycm_extra_conf.py deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08:00
AUTHORS deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
BUILD.gn deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
ChangeLog deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
CODE_OF_CONDUCT.md
codereview.settings
DEPS deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
OWNERS deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
PRESUBMIT.py deps: update V8 to 6.6.346.23 2018-04-11 13:22:42 -04:00
README.md
snapshot_toolchain.gni deps: update V8 to 6.4.388.40 2018-01-24 15:02:20 -08: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.