| 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": [ | 7 "options": [ |
| 8 { | 8 { |
| 9 "domain": "Schema" | 9 "domain": "Schema", |
| 10 "exported": ["Domain"] |
| 10 }, | 11 }, |
| 11 { | 12 { |
| 12 "domain": "Runtime", | 13 "domain": "Runtime", |
| 13 "async": ["evaluate", "awaitPromise", "callFunctionOn", "runScri
pt"] | 14 "async": ["evaluate", "awaitPromise", "callFunctionOn", "runScri
pt"], |
| 15 "exported": ["StackTrace", "RemoteObject"] |
| 14 }, | 16 }, |
| 15 { | 17 { |
| 16 "domain": "Debugger" | 18 "domain": "Debugger", |
| 19 "exported": ["SearchMatch", "paused.reason"] |
| 17 }, | 20 }, |
| 18 { | 21 { |
| 19 "domain": "Console" | 22 "domain": "Console" |
| 20 }, | 23 }, |
| 21 { | 24 { |
| 22 "domain": "Profiler" | 25 "domain": "Profiler" |
| 23 }, | 26 }, |
| 24 { | 27 { |
| 25 "domain": "HeapProfiler" | 28 "domain": "HeapProfiler" |
| 26 } | 29 } |
| 27 ] | 30 ] |
| 28 }, | 31 }, |
| 29 | 32 |
| 30 "exported": { | 33 "exported": { |
| 31 "package": "include/inspector", | 34 "package": "include/inspector", |
| 32 "output": "../../include/inspector", | 35 "output": "../../include/inspector", |
| 33 "string_header": "v8-inspector.h", | 36 "string_header": "v8-inspector.h", |
| 34 "string_in": "StringView", | 37 "string_in": "StringView", |
| 35 "string_out": "std::unique_ptr<StringBuffer>", | 38 "string_out": "std::unique_ptr<StringBuffer>", |
| 36 "to_string_out": "StringBufferImpl::adopt(%s)", | 39 "to_string_out": "StringBufferImpl::adopt(%s)", |
| 37 "export_macro": "V8_EXPORT" | 40 "export_macro": "V8_EXPORT" |
| 38 }, | 41 }, |
| 39 | 42 |
| 40 "lib": { | 43 "lib": { |
| 41 "package": "src/inspector/protocol", | 44 "package": "src/inspector/protocol", |
| 42 "output": "protocol", | 45 "output": "protocol", |
| 43 "string_header": "src/inspector/string-util.h" | 46 "string_header": "src/inspector/string-util.h" |
| 44 } | 47 } |
| 45 } | 48 } |
| OLD | NEW |