0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/v8/third_party/inspector_protocol
Michaël Zasso 6ca81ad72a
deps: update V8 to 7.9.317.20
PR-URL: https://github.com/nodejs/node/pull/30020
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2019-11-08 15:46:25 +01:00
..
bindings deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
encoding deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
lib deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
templates deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
.clang-format deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
BUILD.gn deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
check_protocol_compatibility.py
code_generator.py deps: V8: cherry-pick 35c6d4d 2019-10-07 03:20:17 -04:00
codereview.settings
concatenate_protocols.py deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
convert_protocol_to_json.py deps: update V8 to 7.6.303.28 2019-08-01 12:53:56 +02:00
inspector_protocol.gni deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
LICENSE
OWNERS deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
pdl.py deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
README.md deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00
README.v8 deps: update V8 to 7.9.317.20 2019-11-08 15:46:25 +01:00
roll.py deps: update V8 to 7.7.299.4 2019-08-19 09:25:23 +02:00

Chromium inspector (devtools) protocol

This package contains code generators and templates for the Chromium inspector protocol.

The canonical location of this package is at https://chromium.googlesource.com/deps/inspector_protocol/

In the Chromium tree, it's rolled into https://cs.chromium.org/chromium/src/third_party/inspector_protocol/

In the V8 tree, it's rolled into https://cs.chromium.org/chromium/src/v8/third_party/inspector_protocol/

See also Contributing to Chrome Devtools Protocol.

We're working on enabling standalone builds for parts of this package for testing and development. If you're familiar with Chromium's development process and have the depot_tools installed, you may use these commands to fetch the package (and dependencies) and build and run the tests:

fetch inspector_protocol
cd src
gn gen out/Release
ninja -C out/Release encoding_test bindings_test
out/Release/encoding_test
out/Release/bindings_test

You'll probably also need to install g++, since Clang uses this to find the standard C++ headers. E.g.,

sudo apt-get install g++-8