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

Unified Diff: src/inspector/BUILD.gn

Issue 2239603002: [inspector] Remove inspector_protocol_parser_test target. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: format build files Created 4 years, 4 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gypfiles/all.gyp ('k') | src/inspector/inspector.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
+ ]
}
« no previous file with comments | « gypfiles/all.gyp ('k') | src/inspector/inspector.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698