node/deps/v8
Michaël Zasso cbd3a1cb77
deps: patch V8 to 7.7.299.11
Refs: https://github.com/v8/v8/compare/7.7.299.10...7.7.299.11

PR-URL: https://github.com/nodejs/node/pull/29628
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2019-09-23 15:25:22 +02:00
..
base/trace_event/common deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
benchmarks deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
build_overrides deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
custom_deps deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
docs deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
gni deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
include deps: patch V8 to 7.7.299.11 2019-09-23 15:25:22 +02:00
infra deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
samples deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
src deps: patch V8 to 7.7.299.11 2019-09-23 15:25:22 +02:00
test deps: V8: cherry-pick deac757 2019-09-21 10:59:35 -07:00
testing deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
third_party deps: V8: cherry-pick 35c6d4d 2019-09-18 23:26:25 +02:00
tools deps: V8: cherry-pick e3d7f8a 2019-08-19 09:26:05 +02:00
.clang-format
.clang-tidy deps: update V8 to 7.3.492.25 2019-03-14 18:49:21 +01:00
.editorconfig deps: update V8 to 6.2.414.32 2017-10-18 17:01:41 -07:00
.flake8 deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
.git-blame-ignore-revs deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
.gitattributes deps: update V8 to 7.1.302.28 2018-12-06 15:23:33 +01:00
.gitignore deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
.gn deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
.vpython deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02: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 7.7.299.4 2019-08-19 09:25:23 +02:00
BUILD.gn deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
CODE_OF_CONDUCT.md
COMMON_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
ChangeLog deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
DEPS deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
ENG_REVIEW_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
INFRA_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
INTL_OWNERS deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
LICENSE deps: update V8 to 7.5.288.22 2019-06-01 09:55:12 -04:00
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
OWNERS deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
PPC_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
PRESUBMIT.py deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
README.md deps: update V8 to 7.5.288.22 2019-06-01 09:55:12 -04:00
S390_OWNERS deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
WATCHLISTS
codereview.settings deps: update V8 to 6.1.534.36 2017-09-13 16:15:18 +02: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://v8.dev/docs

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 at v8.dev/docs/contribute.