| 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("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 action("devtools_protocol_constants") { | 10 action("devtools_protocol_constants") { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "device/tcp_device_provider.cc", | 100 "device/tcp_device_provider.cc", |
| 101 "device/tcp_device_provider.h", | 101 "device/tcp_device_provider.h", |
| 102 "device/usb/android_rsa.cc", | 102 "device/usb/android_rsa.cc", |
| 103 "device/usb/android_rsa.h", | 103 "device/usb/android_rsa.h", |
| 104 "device/usb/android_usb_device.cc", | 104 "device/usb/android_usb_device.cc", |
| 105 "device/usb/android_usb_device.h", | 105 "device/usb/android_usb_device.h", |
| 106 "device/usb/android_usb_socket.cc", | 106 "device/usb/android_usb_socket.cc", |
| 107 "device/usb/android_usb_socket.h", | 107 "device/usb/android_usb_socket.h", |
| 108 "device/usb/usb_device_provider.cc", | 108 "device/usb/usb_device_provider.cc", |
| 109 "device/usb/usb_device_provider.h", | 109 "device/usb/usb_device_provider.h", |
| 110 "devtools_auto_opener.cc", |
| 111 "devtools_auto_opener.h", |
| 110 "devtools_contents_resizing_strategy.cc", | 112 "devtools_contents_resizing_strategy.cc", |
| 111 "devtools_contents_resizing_strategy.h", | 113 "devtools_contents_resizing_strategy.h", |
| 112 "devtools_embedder_message_dispatcher.cc", | 114 "devtools_embedder_message_dispatcher.cc", |
| 113 "devtools_embedder_message_dispatcher.h", | 115 "devtools_embedder_message_dispatcher.h", |
| 114 "devtools_file_helper.cc", | 116 "devtools_file_helper.cc", |
| 115 "devtools_file_helper.h", | 117 "devtools_file_helper.h", |
| 116 "devtools_file_system_indexer.cc", | 118 "devtools_file_system_indexer.cc", |
| 117 "devtools_file_system_indexer.h", | 119 "devtools_file_system_indexer.h", |
| 118 "devtools_file_watcher.cc", | 120 "devtools_file_watcher.cc", |
| 119 "devtools_file_watcher.h", | 121 "devtools_file_watcher.h", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 133 "remote_debugging_server.h", | 135 "remote_debugging_server.h", |
| 134 ] | 136 ] |
| 135 if (enable_service_discovery) { | 137 if (enable_service_discovery) { |
| 136 sources += [ | 138 sources += [ |
| 137 "device/cast_device_provider.cc", | 139 "device/cast_device_provider.cc", |
| 138 "device/cast_device_provider.h", | 140 "device/cast_device_provider.h", |
| 139 ] | 141 ] |
| 140 } | 142 } |
| 141 } | 143 } |
| 142 } | 144 } |
| OLD | NEW |