Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(654)

Side by Side Diff: third_party/WebKit/Source/platform/inspector_protocol/sample_config.json

Issue 2452853002: [inspector] use own version of third_party/inspector_protocol (Closed)
Patch Set: supported new inspector_protocol location in components/ui_devtools/BUILD.gn Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "protocol": {
3 "path": "./relative/path/protocol/sample_protocol.json",
4 "package": "include/generated/files/like/this",
5 "output": "place/generated/files/here",
6 "namespace": ["sample_project", "protocol"],
7 "export_macro": "LIB_EXPORT",
8 "export_header": "lib/lib_export.h"
9 },
10
11 "exported": {
12 "package": "include/exported/files/like/this",
13 "output": "place/exported/files/here",
14 "string_header": "include/exported/string.h",
15 "string_in": "String",
16 "string_out": "String",
17 "to_string_out": "toString(%s)",
18 "export_macro": "LIB_EXPORT",
19 "export_header": "lib/lib_export.h"
20 },
21
22 "imported": {
23 "path": "../relative/path/imported_protocol.json",
24 "package": "either/include/imported/files/from/here",
25 "header": "or/include/them/all/together/like/this/imported_protocol.h",
26 "to_imported_string": "toImportedString(%s)",
27 "from_imported_string": "fromImportedString(%s)",
28 "namespace": ["imported_project", "protocol"]
29 },
30
31 "lib": {
32 "package": "include/lib/files/like/this",
33 "output": "place/generated/lib/files/here",
34 "string_header": "string/implementation.h",
35 "platform_header": "platform/implementation.h",
36 "export_macro": "LIB_EXPORT",
37 "export_header": "lib/lib_export.h"
38 }
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698