OLD | NEW |
1 { | 1 { |
2 "protocol": { | 2 "protocol": { |
3 "path": "js_protocol.json", | 3 "path": "js_protocol.json", |
4 "package": "src/inspector/protocol", | 4 "package": "src/inspector/protocol", |
5 "output": "protocol", | 5 "output": "protocol", |
6 "namespace": ["v8_inspector", "protocol"] | 6 "namespace": ["v8_inspector", "protocol"], |
| 7 "options": [ |
| 8 { |
| 9 "domain": "Schema" |
| 10 }, |
| 11 { |
| 12 "domain": "Runtime", |
| 13 "async": ["evaluate", "awaitPromise", "callFunctionOn", "runScri
pt"] |
| 14 }, |
| 15 { |
| 16 "domain": "Debugger" |
| 17 }, |
| 18 { |
| 19 "domain": "Console" |
| 20 }, |
| 21 { |
| 22 "domain": "Profiler" |
| 23 }, |
| 24 { |
| 25 "domain": "HeapProfiler" |
| 26 } |
| 27 ] |
7 }, | 28 }, |
8 | 29 |
9 "exported": { | 30 "exported": { |
10 "package": "include/inspector", | 31 "package": "include/inspector", |
11 "output": "../../include/inspector", | 32 "output": "../../include/inspector", |
12 "string_header": "v8-inspector.h", | 33 "string_header": "v8-inspector.h", |
13 "string_in": "StringView", | 34 "string_in": "StringView", |
14 "string_out": "std::unique_ptr<StringBuffer>", | 35 "string_out": "std::unique_ptr<StringBuffer>", |
15 "to_string_out": "StringBufferImpl::adopt(%s)", | 36 "to_string_out": "StringBufferImpl::adopt(%s)", |
16 "export_macro": "V8_EXPORT" | 37 "export_macro": "V8_EXPORT" |
17 }, | 38 }, |
18 | 39 |
19 "lib": { | 40 "lib": { |
20 "package": "src/inspector/protocol", | 41 "package": "src/inspector/protocol", |
21 "output": "protocol", | 42 "output": "protocol", |
22 "string_header": "src/inspector/string-util.h", | 43 "string_header": "src/inspector/string-util.h" |
23 "platform_header": "src/inspector/protocol-platform.h" | |
24 } | 44 } |
25 } | 45 } |
OLD | NEW |