node/deps/v8
Ali Ijaz Sheikh 9c460d7475 deps: add back no-op harmony shipping flags
Add back the no-op harmony shipping flags that were removed in V8 5.1
to increase compatibility with V8 5.0 that we had been shipping before
v6.5.0. These flags do nothing.

Fixes: https://github.com/nodejs/node/issues/8388
Ref: https://github.com/nodejs/node/pull/8395
PR-URL: https://github.com/nodejs/node/pull/8445
Reviewed-By: addaleax - Anna Henningsen <anna@addaleax.net>
Reviewed-By: thealphanerd - Myles Borins <myles.borins@gmail.com>
Reviewed-By: jasnell - James M Snell <jasnell@gmail.com>
Reviewed-By: evanlucas - Evan Lucas <evanlucas@me.com>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
2016-09-13 16:25:22 -07:00
..
base/trace_event/common deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
benchmarks
build deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
docs
include deps: add back no-op harmony shipping flags 2016-09-13 16:25:22 -07:00
infra deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
samples
src deps: add back no-op harmony shipping flags 2016-09-13 16:25:22 -07:00
test deps: cherry-pick 8ed65b97 from V8's upstream 2016-09-08 10:27:09 +02:00
testing
tools deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
.clang-format
.gitignore
.ycm_extra_conf.py deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
AUTHORS deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
BUILD.gn deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
ChangeLog deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
CODE_OF_CONDUCT.md deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
codereview.settings
DEPS deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
LICENSE
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
Makefile.android
Makefile.nacl
OWNERS deps: update V8 to 5.1.281.75 2016-08-25 10:31:11 -07:00
PRESUBMIT.py
README.md
snapshot_toolchain.gni
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.