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

Unified Diff: third_party/WebKit/Source/platform/inspector_protocol/v8_inspector.gyp

Issue 2242233002: [DevTools] Fix V8 inspector export (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: third_party/WebKit/Source/platform/inspector_protocol/v8_inspector.gyp
diff --git a/third_party/WebKit/Source/platform/v8_inspector/v8_inspector.gyp b/third_party/WebKit/Source/platform/inspector_protocol/v8_inspector.gyp
similarity index 96%
copy from third_party/WebKit/Source/platform/v8_inspector/v8_inspector.gyp
copy to third_party/WebKit/Source/platform/inspector_protocol/v8_inspector.gyp
index 6c5e09aeecf5e1dcfdf65488aed1c378c5392218..2dd29a86bbe042cfeb2e8dadfc306ab543676a75 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/v8_inspector.gyp
+++ b/third_party/WebKit/Source/platform/inspector_protocol/v8_inspector.gyp
@@ -56,8 +56,6 @@
{
'action_name': 'generateV8InspectorProtocolBackendSources',
'inputs': [
- '<(DEPTH)/third_party/jinja2/__init__.py',
- '<(DEPTH)/third_party/markupsafe/__init__.py', # jinja2 dep
eostroukhov 2016/08/15 18:01:03 They are at a different location in Node. Since th
# Source code templates.
'../inspector_protocol/Allocator_h.template',
'../inspector_protocol/Array_h.template',
@@ -110,7 +108,7 @@
'python',
'../inspector_protocol/CodeGenerator.py',
'--output_base', '<(blink_platform_output_dir)',
- '--config', 'v8_inspector/inspector_protocol_config.json',
+ '--config', '../v8_inspector/inspector_protocol_config.json',
],
'message': 'Generating protocol backend sources from json definitions.',
},
@@ -145,13 +143,10 @@
'target_name': 'protocol_sources_stl',
'type': 'none',
'dependencies': ['protocol_version'],
- },
dgozman 2016/08/15 18:44:59 Wow! And it all worked...
eostroukhov 2016/08/15 18:55:24 No it didn't ;)
'actions': [
{
'action_name': 'generateV8InspectorProtocolBackendSourcesSTL',
'inputs': [
- '../../../jinja2/jinja2/__init__.py',
- '../../../markupsafe/markupsafe/__init__.py', # jinja2 dep
# Source code templates.
'../inspector_protocol/Allocator_h.template',
'../inspector_protocol/Array_h.template',
@@ -204,7 +199,7 @@
'python',
'../inspector_protocol/CodeGenerator.py',
'--output_base', '<(blink_platform_output_dir)',
- '--config', 'v8_inspector/inspector_protocol_config.json',
+ '--config', '../v8_inspector/inspector_protocol_config.json',
],
'message': 'Generating protocol backend sources from json definitions.',
},

Powered by Google App Engine
This is Rietveld 408576698