Index: content/browser/devtools/devtools_resources.gyp |
diff --git a/content/browser/devtools/devtools_resources.gyp b/content/browser/devtools/devtools_resources.gyp |
index 72ae70605492208bd84d98f4c1020477ac63b97c..4817e46fec361485d1721a6a2144c2efd0e84fd4 100644 |
--- a/content/browser/devtools/devtools_resources.gyp |
+++ b/content/browser/devtools/devtools_resources.gyp |
@@ -70,7 +70,32 @@ |
'<(browser_protocol)', |
], |
'message': 'Generating DevTools protocol constants from <(blink_protocol)' |
- } |
+ }, |
+ { |
+ 'action_name': 'devtools_protocol_handler', |
pfeldman
2014/09/18 10:11:47
Why is this a part of devtools_resources? devtools
vkuzkokov
2014/09/19 17:02:45
Done.
|
+ 'variables': { |
+ 'blink_protocol': '../../../third_party/WebKit/Source/devtools/protocol.json', |
+ 'generator': 'protocol/devtools_protocol_handler_generator.py', |
+ 'output_cc': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/protocol/devtools_protocol_handler_impl.cc', |
+ 'output_h': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/protocol/devtools_protocol_handler_impl.h', |
+ }, |
+ 'inputs': [ |
+ '<(blink_protocol)', |
+ '<(generator)', |
+ ], |
+ 'outputs': [ |
+ '<(output_cc)', |
+ '<(output_h)', |
+ ], |
+ 'action':[ |
+ 'python', |
+ '<(generator)', |
+ '<(blink_protocol)', |
+ '<(output_cc)', |
+ '<(output_h)', |
+ ], |
+ 'message': 'Generating DevTools protocol browser-side handlers from <(blink_protocol)' |
+ }, |
], |
'direct_dependent_settings': { |
'include_dirs': [ |