| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 deps = [ | 61 deps = [ |
| 62 ":devtools_protocol_constants", | 62 ":devtools_protocol_constants", |
| 63 "//base", | 63 "//base", |
| 64 "//content/public/browser", | 64 "//content/public/browser", |
| 65 "//net", | 65 "//net", |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 if (!is_android) { | 68 if (!is_android) { |
| 69 deps += [ | 69 deps += [ |
| 70 "//chrome/app/theme:theme_resources", | 70 ":webrtc_device_provider_resources", |
| 71 "//chrome/common/extensions/api", | |
| 72 "//chrome:extra_resources", | 71 "//chrome:extra_resources", |
| 73 "//chrome:resources", | 72 "//chrome:resources", |
| 74 "//chrome:strings", | 73 "//chrome:strings", |
| 74 "//chrome/app/theme:theme_resources", |
| 75 "//chrome/common/extensions/api", |
| 75 "//components/devtools_http_handler", | 76 "//components/devtools_http_handler", |
| 76 "//net:http_server", | 77 "//net:http_server", |
| 77 "//skia", | 78 "//skia", |
| 78 "//third_party/icu", | 79 "//third_party/icu", |
| 79 "//third_party/leveldatabase", | 80 "//third_party/leveldatabase", |
| 80 "//third_party/libusb", | 81 "//third_party/libusb", |
| 81 ":webrtc_device_provider_resources", | |
| 82 ] | 82 ] |
| 83 sources += [ | 83 sources += [ |
| 84 "chrome_devtools_discovery_provider.cc", | 84 "chrome_devtools_discovery_provider.cc", |
| 85 "chrome_devtools_discovery_provider.h", | 85 "chrome_devtools_discovery_provider.h", |
| 86 "device/adb/adb_client_socket.cc", | 86 "device/adb/adb_client_socket.cc", |
| 87 "device/adb/adb_client_socket.h", | 87 "device/adb/adb_client_socket.h", |
| 88 "device/adb/adb_device_provider.cc", | 88 "device/adb/adb_device_provider.cc", |
| 89 "device/adb/adb_device_provider.h", | 89 "device/adb/adb_device_provider.h", |
| 90 "device/android_device_info_query.cc", | 90 "device/android_device_info_query.cc", |
| 91 "device/android_device_manager.cc", | 91 "device/android_device_manager.cc", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 source = "device/webrtc/resources.grd" | 147 source = "device/webrtc/resources.grd" |
| 148 output_dir = "$root_gen_dir/chrome" | 148 output_dir = "$root_gen_dir/chrome" |
| 149 outputs = [ | 149 outputs = [ |
| 150 "grit/webrtc_device_provider_resources.h", | 150 "grit/webrtc_device_provider_resources.h", |
| 151 "grit/webrtc_device_provider_resources_map.cc", | 151 "grit/webrtc_device_provider_resources_map.cc", |
| 152 "grit/webrtc_device_provider_resources_map.h", | 152 "grit/webrtc_device_provider_resources_map.h", |
| 153 "webrtc_device_provider_resources.pak", | 153 "webrtc_device_provider_resources.pak", |
| 154 ] | 154 ] |
| 155 } | 155 } |
| 156 } | 156 } |
| OLD | NEW |