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 if (!is_android) { | 5 if (!is_android) { |
6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
7 } | 7 } |
8 | 8 |
9 action("devtools_protocol_constants") { | 9 action("devtools_protocol_constants") { |
10 script = "devtools_protocol_constants_generator.py" | 10 script = "devtools_protocol_constants_generator.py" |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 "device/webrtc/webrtc_device_provider.cc", | 114 "device/webrtc/webrtc_device_provider.cc", |
115 "device/webrtc/webrtc_device_provider.h", | 115 "device/webrtc/webrtc_device_provider.h", |
116 "devtools_contents_resizing_strategy.cc", | 116 "devtools_contents_resizing_strategy.cc", |
117 "devtools_contents_resizing_strategy.h", | 117 "devtools_contents_resizing_strategy.h", |
118 "devtools_embedder_message_dispatcher.cc", | 118 "devtools_embedder_message_dispatcher.cc", |
119 "devtools_embedder_message_dispatcher.h", | 119 "devtools_embedder_message_dispatcher.h", |
120 "devtools_file_helper.cc", | 120 "devtools_file_helper.cc", |
121 "devtools_file_helper.h", | 121 "devtools_file_helper.h", |
122 "devtools_file_system_indexer.cc", | 122 "devtools_file_system_indexer.cc", |
123 "devtools_file_system_indexer.h", | 123 "devtools_file_system_indexer.h", |
| 124 "devtools_file_watcher.cc", |
| 125 "devtools_file_watcher.h", |
124 "devtools_target_impl.cc", | 126 "devtools_target_impl.cc", |
125 "devtools_target_impl.h", | 127 "devtools_target_impl.h", |
126 "devtools_targets_ui.cc", | 128 "devtools_targets_ui.cc", |
127 "devtools_targets_ui.h", | 129 "devtools_targets_ui.h", |
128 "devtools_toggle_action.cc", | 130 "devtools_toggle_action.cc", |
129 "devtools_toggle_action.h", | 131 "devtools_toggle_action.h", |
130 "devtools_ui_bindings.cc", | 132 "devtools_ui_bindings.cc", |
131 "devtools_ui_bindings.h", | 133 "devtools_ui_bindings.h", |
132 "devtools_window.cc", | 134 "devtools_window.cc", |
133 "devtools_window.h", | 135 "devtools_window.h", |
(...skipping 11 matching lines...) Expand all Loading... |
145 source = "device/webrtc/resources.grd" | 147 source = "device/webrtc/resources.grd" |
146 output_dir = "$root_gen_dir/chrome" | 148 output_dir = "$root_gen_dir/chrome" |
147 outputs = [ | 149 outputs = [ |
148 "grit/webrtc_device_provider_resources.h", | 150 "grit/webrtc_device_provider_resources.h", |
149 "grit/webrtc_device_provider_resources_map.cc", | 151 "grit/webrtc_device_provider_resources_map.cc", |
150 "grit/webrtc_device_provider_resources_map.h", | 152 "grit/webrtc_device_provider_resources_map.h", |
151 "webrtc_device_provider_resources.pak", | 153 "webrtc_device_provider_resources.pak", |
152 ] | 154 ] |
153 } | 155 } |
154 } | 156 } |
OLD | NEW |