Index: src/inspector/BUILD.gn |
diff --git a/src/inspector/BUILD.gn b/src/inspector/BUILD.gn |
index b48678485bd1a74e256dd311432163c714332c9b..56b96e1cd618d9a0af92b7680d751d86d5af80d7 100644 |
--- a/src/inspector/BUILD.gn |
+++ b/src/inspector/BUILD.gn |
@@ -36,7 +36,7 @@ action("inspector_protocol_sources") { |
"--protocol", |
rebase_path("js_protocol.json", root_build_dir), |
"--string_type", |
- "String", |
+ "String16", |
"--export_macro", |
"PLATFORM_EXPORT", |
"--output_dir", |
@@ -51,12 +51,8 @@ action("inspector_protocol_sources") { |
} |
config("inspector_protocol_config") { |
- include_dirs = [ |
- "$protocol_path/../..", |
- ] |
- defines = [ |
- "V8_INSPECTOR_USE_STL" |
- ] |
+ include_dirs = [ "$protocol_path/../.." ] |
+ defines = [ "V8_INSPECTOR_USE_STL" ] |
cflags = [] |
if (is_win) { |
cflags += [ |
@@ -74,35 +70,32 @@ source_set("inspector_protocol") { |
deps = [ |
":inspector_protocol_sources", |
] |
- configs += [ |
- ":inspector_protocol_config" |
- ] |
- include_dirs = [ |
- "$target_gen_dir/..", |
- ] |
+ configs += [ ":inspector_protocol_config" ] |
+ include_dirs = [ "$target_gen_dir/.." ] |
sources = protocol_sources + [ |
- "$protocol_path/Allocator.h", |
- "$protocol_path/Array.h", |
- "$protocol_path/BackendCallback.h", |
- "$protocol_path/CodeGenerator.py", |
- "$protocol_path/Collections.h", |
- "$protocol_path/DispatcherBase.cpp", |
- "$protocol_path/DispatcherBase.h", |
- "$protocol_path/ErrorSupport.cpp", |
- "$protocol_path/ErrorSupport.h", |
- "$protocol_path/FrontendChannel.h", |
- "$protocol_path/Maybe.h", |
- "$protocol_path/Object.cpp", |
- "$protocol_path/Object.h", |
- "$protocol_path/Parser.cpp", |
- "$protocol_path/Parser.h", |
- "$protocol_path/Platform.h", |
- "$protocol_path/PlatformSTL.h", |
- "$protocol_path/String16.h", |
- "$protocol_path/String16STL.cpp", |
- "$protocol_path/String16STL.h", |
- "$protocol_path/ValueConversions.h", |
- "$protocol_path/Values.cpp", |
- "$protocol_path/Values.h", |
- ] |
+ "$protocol_path/Allocator.h", |
+ "$protocol_path/Array.h", |
+ "$protocol_path/BackendCallback.h", |
+ "$protocol_path/CodeGenerator.py", |
+ "$protocol_path/Collections.h", |
+ "$protocol_path/DispatcherBase.cpp", |
+ "$protocol_path/DispatcherBase.h", |
+ "$protocol_path/ErrorSupport.cpp", |
+ "$protocol_path/ErrorSupport.h", |
+ "$protocol_path/FrontendChannel.h", |
+ "$protocol_path/Maybe.h", |
+ "$protocol_path/Object.cpp", |
+ "$protocol_path/Object.h", |
+ "$protocol_path/Parser.cpp", |
+ "$protocol_path/Parser.h", |
+ "$protocol_path/Platform.h", |
+ "$protocol_path/PlatformSTL.h", |
+ "$protocol_path/String16.cpp", |
+ "$protocol_path/String16.h", |
+ "$protocol_path/String16STL.cpp", |
+ "$protocol_path/String16STL.h", |
+ "$protocol_path/ValueConversions.h", |
+ "$protocol_path/Values.cpp", |
+ "$protocol_path/Values.h", |
+ ] |
} |