| OLD | NEW |
| 1 # Copyright 2016 the V8 project authors. All rights reserved. | 1 # Copyright 2016 the V8 project authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'protocol_path': '<(PRODUCT_DIR)/../../third_party/inspector_protocol', | 7 'protocol_path': '../../third_party/inspector_protocol', |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'inspector.gypi', | 10 'inspector.gypi', |
| 11 '<(PRODUCT_DIR)/../../../third_party/inspector_protocol/inspector_protocol.g
ypi', | 11 '<(PRODUCT_DIR)/../../../third_party/inspector_protocol/inspector_protocol.g
ypi', |
| 12 ], | 12 ], |
| 13 'targets': [ | 13 'targets': [ |
| 14 { 'target_name': 'inspector_injected_script', | 14 { 'target_name': 'inspector_injected_script', |
| 15 'type': 'none', | 15 'type': 'none', |
| 16 'actions': [ | 16 'actions': [ |
| 17 { | 17 { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'js_protocol.json', | 90 'js_protocol.json', |
| 91 'inspector_protocol_config.json', | 91 'inspector_protocol_config.json', |
| 92 '<@(inspector_protocol_files)', | 92 '<@(inspector_protocol_files)', |
| 93 ], | 93 ], |
| 94 'outputs': [ | 94 'outputs': [ |
| 95 '<@(inspector_generated_sources)', | 95 '<@(inspector_generated_sources)', |
| 96 ], | 96 ], |
| 97 'action': [ | 97 'action': [ |
| 98 'python', | 98 'python', |
| 99 '<(protocol_path)/CodeGenerator.py', | 99 '<(protocol_path)/CodeGenerator.py', |
| 100 '--jinja_dir', '<(PRODUCT_DIR)/../../third_party', | 100 '--jinja_dir', '../../third_party', |
| 101 '--output_base', '<(SHARED_INTERMEDIATE_DIR)/src/inspector', | 101 '--output_base', '<(SHARED_INTERMEDIATE_DIR)/src/inspector', |
| 102 '--config', 'inspector_protocol_config.json', | 102 '--config', 'inspector_protocol_config.json', |
| 103 ], | 103 ], |
| 104 'message': 'Generating inspector protocol sources from protocol json', | 104 'message': 'Generating inspector protocol sources from protocol json', |
| 105 }, | 105 }, |
| 106 ] | 106 ] |
| 107 }, | 107 }, |
| 108 ], | 108 ], |
| 109 } | 109 } |
| OLD | NEW |