Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
encoding/ | 12-May-2024 | - | 4,621 | 3,532 | ||
jinja2/ | 12-May-2024 | - | 12,652 | 9,843 | ||
lib/ | 12-May-2024 | - | 6,023 | 5,295 | ||
markupsafe/ | 12-May-2024 | - | 1,020 | 826 | ||
templates/ | 12-May-2024 | - | 889 | 773 | ||
.clang-format | D | 12-May-2024 | 1.1 KiB | 37 | 35 | |
BUILD.gn | D | 12-May-2024 | 761 | 35 | 30 | |
LICENSE | D | 12-May-2024 | 1.5 KiB | 28 | 27 | |
OWNERS | D | 12-May-2024 | 141 | 9 | 7 | |
README.md | D | 12-May-2024 | 1.2 KiB | 34 | 24 | |
README.node | D | 12-May-2024 | 454 | 17 | 14 | |
check_protocol_compatibility.py | D | 12-May-2024 | 20.2 KiB | 489 | 378 | |
code_generator.py | D | 12-May-2024 | 27.3 KiB | 702 | 541 | |
codereview.settings | D | 12-May-2024 | 269 | 7 | 6 | |
concatenate_protocols.py | D | 12-May-2024 | 1.1 KiB | 40 | 27 | |
convert_protocol_to_json.py | D | 12-May-2024 | 1.3 KiB | 34 | 23 | |
inspector_protocol.gni | D | 12-May-2024 | 3.4 KiB | 93 | 85 | |
inspector_protocol.gypi | D | 12-May-2024 | 1.1 KiB | 35 | 33 | |
pdl.py | D | 12-May-2024 | 5.3 KiB | 172 | 138 | |
roll.py | D | 12-May-2024 | 5.7 KiB | 163 | 127 |
README.md
1# Chromium inspector (devtools) protocol 2 3This package contains code generators and templates for the Chromium 4inspector protocol. 5 6The canonical location of this package is at 7https://chromium.googlesource.com/deps/inspector_protocol/ 8 9In the Chromium tree, it's rolled into 10https://cs.chromium.org/chromium/src/third_party/inspector_protocol/ 11 12In the V8 tree, it's rolled into 13https://cs.chromium.org/chromium/src/v8/third_party/inspector_protocol/ 14 15See also [Contributing to Chrome Devtools Protocol](https://docs.google.com/document/d/1c-COD2kaK__5iMM5SEx-PzNA7HFmgttcYfOHHX0HaOM/edit). 16 17We're working on enabling standalone builds for parts of this package for 18testing and development, please feel free to ignore this for now. 19But, if you're familiar with 20[Chromium's development process](https://www.chromium.org/developers/contributing-code) 21and have the depot_tools installed, you may use these commands 22to fetch the package (and dependencies) and build and run the tests: 23 24 fetch inspector_protocol 25 cd src 26 gn gen out/Release 27 ninja -C out/Release json_parser_test 28 out/Release/json_parser_test 29 30You'll probably also need to install g++, since Clang uses this to find the 31standard C++ headers. E.g., 32 33 sudo apt-get install g++-8 34
README.node
1Name: inspector protocol 2Short Name: inspector_protocol 3URL: https://chromium.googlesource.com/deps/inspector_protocol/ 4Version: 0 5Revision: 0aafd2876f7485db7b07c513c0457b7cbbbe3304 6License: BSD 7License File: LICENSE 8Security Critical: no 9 10Description: 11src/inspector uses these scripts to generate handlers from protocol 12description. 13 14Local modifications: 15- This only includes the lib/ and templates/ directories, scripts, build 16 and the LICENSE files. 17