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

Unified Diff: third_party/WebKit/Source/devtools/devtools.gyp

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/devtools.gyp
diff --git a/third_party/WebKit/Source/devtools/devtools.gyp b/third_party/WebKit/Source/devtools/devtools.gyp
index 5d7e8fbb6ad0938bd6efcebadeae65a13929e5f8..a99caf720319cb6bc7f01a8d8bcf24601866047f 100644
--- a/third_party/WebKit/Source/devtools/devtools.gyp
+++ b/third_party/WebKit/Source/devtools/devtools.gyp
@@ -191,11 +191,14 @@
'actions': [
{
'action_name': 'generateInspectorProtocolFrontendSources',
+ 'dependencies': [
+ '../core/inspector:protocol_version'
+ ],
'inputs': [
# The python script in action below.
'scripts/CodeGeneratorFrontend.py',
# Input file for the script.
- 'protocol.json',
+ '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/protocol/inspector.json',
],
'outputs': [
'<(PRODUCT_DIR)/resources/inspector/InspectorBackendCommands.js',
@@ -203,10 +206,10 @@
'action': [
'python',
'scripts/CodeGeneratorFrontend.py',
- 'protocol.json',
+ '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/protocol/inspector.json',
'--output_js_dir', '<(PRODUCT_DIR)/resources/inspector/',
],
- 'message': 'Generating Inspector protocol frontend sources from protocol.json',
+ 'message': 'Generating Inspector protocol frontend sources from json definitions.',
},
]
},

Powered by Google App Engine
This is Rietveld 408576698