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 action("devtools_protocol_constants") { | 5 action("devtools_protocol_constants") { |
6 script = "//content/public/browser/devtools_protocol_constants_generator.py" | 6 script = "//content/public/browser/devtools_protocol_constants_generator.py" |
7 | 7 |
8 blink_protocol = "//third_party/WebKit/Source/devtools/protocol.json" | 8 blink_protocol = "//third_party/WebKit/Source/devtools/protocol.json" |
9 browser_protocol = "//content/browser/devtools/browser_protocol.json" | 9 browser_protocol = "//content/browser/devtools/browser_protocol.json" |
10 inputs = [ blink_protocol, browser_protocol ] | 10 inputs = [ blink_protocol, browser_protocol ] |
(...skipping 13 matching lines...) Expand all Loading... |
24 # Note: new sources and deps should be generally added in (!is_android) below. | 24 # Note: new sources and deps should be generally added in (!is_android) below. |
25 sources = [ | 25 sources = [ |
26 "chrome_devtools_manager_delegate.cc", | 26 "chrome_devtools_manager_delegate.cc", |
27 "chrome_devtools_manager_delegate.h", | 27 "chrome_devtools_manager_delegate.h", |
28 "devtools_network_conditions.cc", | 28 "devtools_network_conditions.cc", |
29 "devtools_network_conditions.h", | 29 "devtools_network_conditions.h", |
30 "devtools_network_controller.cc", | 30 "devtools_network_controller.cc", |
31 "devtools_network_controller.h", | 31 "devtools_network_controller.h", |
32 "devtools_network_interceptor.cc", | 32 "devtools_network_interceptor.cc", |
33 "devtools_network_interceptor.h", | 33 "devtools_network_interceptor.h", |
| 34 "devtools_network_protocol_handler.cc", |
| 35 "devtools_network_protocol_handler.h", |
34 "devtools_network_transaction.cc", | 36 "devtools_network_transaction.cc", |
35 "devtools_network_transaction.h", | 37 "devtools_network_transaction.h", |
36 "devtools_network_transaction_factory.cc", | 38 "devtools_network_transaction_factory.cc", |
37 "devtools_network_transaction_factory.h", | 39 "devtools_network_transaction_factory.h", |
38 "devtools_protocol.cc", | 40 "devtools_protocol.cc", |
39 "devtools_protocol.h" | 41 "devtools_protocol.h" |
40 ] | 42 ] |
41 sources += get_target_outputs(":devtools_protocol_constants") | 43 sources += get_target_outputs(":devtools_protocol_constants") |
42 | 44 |
43 # TODO(GYP) | 45 # TODO(GYP) |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 "devtools_toggle_action.h", | 117 "devtools_toggle_action.h", |
116 "devtools_ui_bindings.cc", | 118 "devtools_ui_bindings.cc", |
117 "devtools_ui_bindings.h", | 119 "devtools_ui_bindings.h", |
118 "devtools_window.cc", | 120 "devtools_window.cc", |
119 "devtools_window.h", | 121 "devtools_window.h", |
120 "remote_debugging_server.cc", | 122 "remote_debugging_server.cc", |
121 "remote_debugging_server.h" | 123 "remote_debugging_server.h" |
122 ] | 124 ] |
123 } | 125 } |
124 } | 126 } |
OLD | NEW |