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

Unified Diff: third_party/WebKit/Source/devtools/BUILD.gn

Issue 2035653005: DevTools: split protocol.json into files per domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
Index: third_party/WebKit/Source/devtools/BUILD.gn
diff --git a/third_party/WebKit/Source/devtools/BUILD.gn b/third_party/WebKit/Source/devtools/BUILD.gn
index 9b3e126c2e356e77e0f777cb147ffd93960d0f52..8e6413654a286b220ce967ea400f4ac3570ff1f2 100644
--- a/third_party/WebKit/Source/devtools/BUILD.gn
+++ b/third_party/WebKit/Source/devtools/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//build/config/features.gni")
+import("//third_party/WebKit/Source/core/core.gni")
gypi_values = exec_script("//build/gypi_to_gn.py",
[ rebase_path("devtools.gypi") ],
@@ -224,9 +225,11 @@ action("supported_css_properties") {
action("frontend_protocol_sources") {
script = "scripts/CodeGeneratorFrontend.py"
-
+ deps = [
+ "../core/inspector:protocol_version",
+ ]
inputs = [
- "protocol.json",
+ "$blink_core_output_dir/inspector/protocol/inspector.json",
]
outputs = [
resources_out_dir + "InspectorBackendCommands.js",

Powered by Google App Engine
This is Rietveld 408576698