| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'devtools_protocol_handler', | 8 'target_name': 'devtools_protocol_handler', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'actions': [ | 10 'actions': [ |
| 11 { | 11 { |
| 12 'action_name': 'devtools_protocol_handler', | 12 'action_name': 'devtools_protocol_handler', |
| 13 'dependencies': [ |
| 14 '//third_party/WebKit/Source/core/inspector:protocol_version' |
| 15 ], |
| 13 'variables': { | 16 'variables': { |
| 14 'blink_protocol': '../../../third_party/WebKit/Source/devtools/proto
col.json', | 17 'blink_protocol': '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/p
rotocol.json', |
| 15 'browser_protocol': 'browser_protocol.json', | 18 'browser_protocol': 'browser_protocol.json', |
| 16 'generator': 'protocol/devtools_protocol_handler_generator.py', | 19 'generator': 'protocol/devtools_protocol_handler_generator.py', |
| 17 'output_cc': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/pr
otocol/devtools_protocol_dispatcher.cc', | 20 'output_cc': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/pr
otocol/devtools_protocol_dispatcher.cc', |
| 18 'output_h': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/pro
tocol/devtools_protocol_dispatcher.h', | 21 'output_h': '<(SHARED_INTERMEDIATE_DIR)/content/browser/devtools/pro
tocol/devtools_protocol_dispatcher.h', |
| 19 }, | 22 }, |
| 20 'inputs': [ | 23 'inputs': [ |
| 21 '<(blink_protocol)', | 24 '<(blink_protocol)', |
| 22 '<(browser_protocol)', | 25 '<(browser_protocol)', |
| 23 '<(generator)', | 26 '<(generator)', |
| 24 ], | 27 ], |
| (...skipping 13 matching lines...) Expand all Loading... |
| 38 }, | 41 }, |
| 39 ], | 42 ], |
| 40 'direct_dependent_settings': { | 43 'direct_dependent_settings': { |
| 41 'include_dirs': [ | 44 'include_dirs': [ |
| 42 '<(SHARED_INTERMEDIATE_DIR)', | 45 '<(SHARED_INTERMEDIATE_DIR)', |
| 43 ] | 46 ] |
| 44 }, | 47 }, |
| 45 }, | 48 }, |
| 46 ], | 49 ], |
| 47 } | 50 } |
| OLD | NEW |