-
Notifications
You must be signed in to change notification settings - Fork 30.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: move inspector_protocol to deps
The `crdtp` library in the inspector_protocol is compiled as a library and linked to the node executable. PR-URL: #56649 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
- Loading branch information
1 parent
744c2f5
commit 0aa5874
Showing
75 changed files
with
84 additions
and
4,799 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 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](https://docs.google.com/document/d/1c-COD2kaK__5iMM5SEx-PzNA7HFmgttcYfOHHX0HaOM/edit). | ||
|
||
To build and run the tests of the crdtp library, see | ||
[CRDTP - Chrome DevTools Protocol](crdtp/README.md). |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
'variables': { | ||
'crdtp_sources': [ | ||
'crdtp/cbor.cc', | ||
'crdtp/cbor.h', | ||
'crdtp/dispatch.cc', | ||
'crdtp/dispatch.h', | ||
'crdtp/error_support.cc', | ||
'crdtp/error_support.h', | ||
'crdtp/export.h', | ||
'crdtp/find_by_first.h', | ||
'crdtp/frontend_channel.h', | ||
'crdtp/json.cc', | ||
'crdtp/json.h', | ||
'crdtp/json_platform.cc', | ||
'crdtp/json_platform.h', | ||
'crdtp/maybe.h', | ||
'crdtp/parser_handler.h', | ||
'crdtp/protocol_core.cc', | ||
'crdtp/protocol_core.h', | ||
'crdtp/serializable.cc', | ||
'crdtp/serializable.h', | ||
'crdtp/span.cc', | ||
'crdtp/span.h', | ||
'crdtp/status.cc', | ||
'crdtp/status.h', | ||
] | ||
}, | ||
'targets': [ | ||
{ | ||
'target_name': 'crdtp', | ||
'type': 'static_library', | ||
'include_dirs': [ '.' ], | ||
'direct_dependent_settings': { | ||
# Use like `#include "crdtp/json.h"` | ||
'include_dirs': [ '.' ], | ||
}, | ||
'sources': [ | ||
'<@(crdtp_sources)', | ||
], | ||
}, | ||
] | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,6 @@ | ||
# Chromium inspector (devtools) protocol | ||
|
||
This package contains code generators and templates for the Chromium | ||
inspector protocol. | ||
This directory contains scripts to update the [Chromium inspector protocol][] | ||
to local at `deps/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](https://docs.google.com/document/d/1c-COD2kaK__5iMM5SEx-PzNA7HFmgttcYfOHHX0HaOM/edit). | ||
|
||
To build and run the tests of the crdtp library, see | ||
[CRDTP - Chrome DevTools Protocol](crdtp/README.md). | ||
[Chromium inspector protocol]: https://chromium.googlesource.com/deps/inspector_protocol/ |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.