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

Unified Diff: third_party/WebKit/Source/core/inspector/BUILD.gn

Issue 2240663003: [DevTools] Introduce config file for inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2226863003
Patch Set: rebased 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 | « no previous file | third_party/WebKit/Source/core/inspector/inspector.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/inspector/BUILD.gn
diff --git a/third_party/WebKit/Source/core/inspector/BUILD.gn b/third_party/WebKit/Source/core/inspector/BUILD.gn
index 815a1c4811e87f16ae2b9d6fdc24bbdf70c09443..6eaed0e182f696b91e20e4f59ae50bdb966cca41 100644
--- a/third_party/WebKit/Source/core/inspector/BUILD.gn
+++ b/third_party/WebKit/Source/core/inspector/BUILD.gn
@@ -44,6 +44,7 @@ action("protocol_sources") {
inputs = [
"browser_protocol.json",
"../../platform/v8_inspector/js_protocol.json",
+ "inspector_protocol_config.json",
]
outputs = [
"$blink_core_output_dir/inspector/protocol/Accessibility.cpp",
@@ -103,20 +104,10 @@ action("protocol_sources") {
]
args = [
- "--protocol",
- rebase_path("browser_protocol.json", root_build_dir),
- "--include",
- rebase_path("../../platform/v8_inspector/js_protocol.json", root_build_dir),
- "--include_package",
- "platform/v8_inspector/public/protocol",
- "--string_type",
- "String",
- "--export_macro",
- "CORE_EXPORT",
- "--output_dir",
- rebase_path(blink_core_output_dir + "/inspector/protocol", root_build_dir),
- "--output_package",
- "core/inspector/protocol",
+ "--output_base",
+ rebase_path(blink_core_output_dir, root_build_dir),
+ "--config",
+ rebase_path("inspector_protocol_config.json", root_build_dir),
]
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/inspector/inspector.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698