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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 "//chrome:strings", | 70 "//chrome:strings", |
71 "//components/devtools_http_handler", | 71 "//components/devtools_http_handler", |
72 "//net:http_server", | 72 "//net:http_server", |
73 "//skia", | 73 "//skia", |
74 "//third_party/icu", | 74 "//third_party/icu", |
75 "//third_party/leveldatabase", | 75 "//third_party/leveldatabase", |
76 "//third_party/libusb", | 76 "//third_party/libusb", |
77 ":webrtc_device_provider_resources", | 77 ":webrtc_device_provider_resources", |
78 ] | 78 ] |
79 sources += [ | 79 sources += [ |
| 80 "chrome_devtools_discovery_provider.cc", |
| 81 "chrome_devtools_discovery_provider.h", |
80 "chrome_devtools_manager_delegate.cc", | 82 "chrome_devtools_manager_delegate.cc", |
81 "chrome_devtools_manager_delegate.h", | 83 "chrome_devtools_manager_delegate.h", |
82 "device/adb/adb_client_socket.cc", | 84 "device/adb/adb_client_socket.cc", |
83 "device/adb/adb_client_socket.h", | 85 "device/adb/adb_client_socket.h", |
84 "device/adb/adb_device_provider.cc", | 86 "device/adb/adb_device_provider.cc", |
85 "device/adb/adb_device_provider.h", | 87 "device/adb/adb_device_provider.h", |
86 "device/android_device_info_query.cc", | 88 "device/android_device_info_query.cc", |
87 "device/android_device_manager.cc", | 89 "device/android_device_manager.cc", |
88 "device/android_device_manager.h", | 90 "device/android_device_manager.h", |
89 "device/android_web_socket.cc", | 91 "device/android_web_socket.cc", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 source = "device/webrtc/resources.grd" | 141 source = "device/webrtc/resources.grd" |
140 output_dir = "$root_gen_dir/chrome" | 142 output_dir = "$root_gen_dir/chrome" |
141 outputs = [ | 143 outputs = [ |
142 "grit/webrtc_device_provider_resources.h", | 144 "grit/webrtc_device_provider_resources.h", |
143 "grit/webrtc_device_provider_resources_map.cc", | 145 "grit/webrtc_device_provider_resources_map.cc", |
144 "grit/webrtc_device_provider_resources_map.h", | 146 "grit/webrtc_device_provider_resources_map.h", |
145 "webrtc_device_provider_resources.pak", | 147 "webrtc_device_provider_resources.pak", |
146 ] | 148 ] |
147 } | 149 } |
148 } | 150 } |
OLD | NEW |