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 ] |
11 outputs = [ | 11 outputs = [ |
12 "$target_gen_dir/devtools_protocol_constants.cc", | 12 "$target_gen_dir/devtools_protocol_constants.cc", |
13 "$target_gen_dir/devtools_protocol_constants.h", | 13 "$target_gen_dir/devtools_protocol_constants.h", |
14 ] | 14 ] |
15 | 15 |
16 args = [ "chrome" ] | 16 args = [ "chrome" ] |
17 args += rebase_path(outputs, root_build_dir) | 17 args += rebase_path(outputs, root_build_dir) |
18 args += [ rebase_path(blink_protocol, root_build_dir) ] | 18 args += [ rebase_path(blink_protocol, root_build_dir) ] |
19 args += [ rebase_path(browser_protocol, root_build_dir) ] | 19 args += [ rebase_path(browser_protocol, root_build_dir) ] |
20 } | 20 } |
21 | 21 |
22 # GYP version: chrome/chrome_debugger.gypi:debugger | 22 # GYP version: chrome/chrome_debugger.gypi:debugger |
23 static_library("devtools") { | 23 static_library("devtools") { |
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", | |
27 "chrome_devtools_manager_delegate.h", | |
28 "devtools_network_conditions.cc", | 26 "devtools_network_conditions.cc", |
29 "devtools_network_conditions.h", | 27 "devtools_network_conditions.h", |
30 "devtools_network_controller.cc", | 28 "devtools_network_controller.cc", |
31 "devtools_network_controller.h", | 29 "devtools_network_controller.h", |
32 "devtools_network_interceptor.cc", | 30 "devtools_network_interceptor.cc", |
33 "devtools_network_interceptor.h", | 31 "devtools_network_interceptor.h", |
34 "devtools_network_protocol_handler.cc", | 32 "devtools_network_protocol_handler.cc", |
35 "devtools_network_protocol_handler.h", | 33 "devtools_network_protocol_handler.h", |
36 "devtools_network_transaction.cc", | 34 "devtools_network_transaction.cc", |
37 "devtools_network_transaction.h", | 35 "devtools_network_transaction.h", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 "device/usb/android_rsa.cc", | 92 "device/usb/android_rsa.cc", |
95 "device/usb/android_rsa.h", | 93 "device/usb/android_rsa.h", |
96 "device/usb/android_usb_device.cc", | 94 "device/usb/android_usb_device.cc", |
97 "device/usb/android_usb_device.h", | 95 "device/usb/android_usb_device.h", |
98 "device/usb/android_usb_socket.cc", | 96 "device/usb/android_usb_socket.cc", |
99 "device/usb/android_usb_socket.h", | 97 "device/usb/android_usb_socket.h", |
100 "device/usb/usb_device_provider.cc", | 98 "device/usb/usb_device_provider.cc", |
101 "device/usb/usb_device_provider.h", | 99 "device/usb/usb_device_provider.h", |
102 "browser_list_tabcontents_provider.cc", | 100 "browser_list_tabcontents_provider.cc", |
103 "browser_list_tabcontents_provider.h", | 101 "browser_list_tabcontents_provider.h", |
| 102 "chrome_devtools_manager_delegate.cc", |
| 103 "chrome_devtools_manager_delegate.h", |
104 "devtools_contents_resizing_strategy.cc", | 104 "devtools_contents_resizing_strategy.cc", |
105 "devtools_contents_resizing_strategy.h", | 105 "devtools_contents_resizing_strategy.h", |
106 "devtools_embedder_message_dispatcher.cc", | 106 "devtools_embedder_message_dispatcher.cc", |
107 "devtools_embedder_message_dispatcher.h", | 107 "devtools_embedder_message_dispatcher.h", |
108 "devtools_file_helper.cc", | 108 "devtools_file_helper.cc", |
109 "devtools_file_helper.h", | 109 "devtools_file_helper.h", |
110 "devtools_file_system_indexer.cc", | 110 "devtools_file_system_indexer.cc", |
111 "devtools_file_system_indexer.h", | 111 "devtools_file_system_indexer.h", |
112 "devtools_target_impl.cc", | 112 "devtools_target_impl.cc", |
113 "devtools_target_impl.h", | 113 "devtools_target_impl.h", |
114 "devtools_targets_ui.cc", | 114 "devtools_targets_ui.cc", |
115 "devtools_targets_ui.h", | 115 "devtools_targets_ui.h", |
116 "devtools_toggle_action.cc", | 116 "devtools_toggle_action.cc", |
117 "devtools_toggle_action.h", | 117 "devtools_toggle_action.h", |
118 "devtools_ui_bindings.cc", | 118 "devtools_ui_bindings.cc", |
119 "devtools_ui_bindings.h", | 119 "devtools_ui_bindings.h", |
120 "devtools_window.cc", | 120 "devtools_window.cc", |
121 "devtools_window.h", | 121 "devtools_window.h", |
122 "remote_debugging_server.cc", | 122 "remote_debugging_server.cc", |
123 "remote_debugging_server.h" | 123 "remote_debugging_server.h" |
124 ] | 124 ] |
125 } | 125 } |
126 } | 126 } |
OLD | NEW |