| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "//content/public/browser", | 67 "//content/public/browser", |
| 68 "//net", | 68 "//net", |
| 69 ] | 69 ] |
| 70 | 70 |
| 71 if (!is_android) { | 71 if (!is_android) { |
| 72 deps += [ | 72 deps += [ |
| 73 "//chrome:extra_resources", | 73 "//chrome:extra_resources", |
| 74 "//chrome:resources", | 74 "//chrome:resources", |
| 75 "//chrome:strings", | 75 "//chrome:strings", |
| 76 "//chrome/app/theme:theme_resources", | 76 "//chrome/app/theme:theme_resources", |
| 77 "//chrome/common/extensions/api", | |
| 78 "//components/devtools_http_handler", | 77 "//components/devtools_http_handler", |
| 79 "//net:http_server", | 78 "//net:http_server", |
| 80 "//skia", | 79 "//skia", |
| 81 "//third_party/icu", | 80 "//third_party/icu", |
| 82 "//third_party/leveldatabase", | 81 "//third_party/leveldatabase", |
| 83 ] | 82 ] |
| 83 if (enable_extensions) { |
| 84 deps += [ "//chrome/common/extensions/api" ] |
| 85 } |
| 84 sources += [ | 86 sources += [ |
| 85 "chrome_devtools_discovery_provider.cc", | 87 "chrome_devtools_discovery_provider.cc", |
| 86 "chrome_devtools_discovery_provider.h", | 88 "chrome_devtools_discovery_provider.h", |
| 87 "device/adb/adb_client_socket.cc", | 89 "device/adb/adb_client_socket.cc", |
| 88 "device/adb/adb_client_socket.h", | 90 "device/adb/adb_client_socket.h", |
| 89 "device/adb/adb_device_provider.cc", | 91 "device/adb/adb_device_provider.cc", |
| 90 "device/adb/adb_device_provider.h", | 92 "device/adb/adb_device_provider.h", |
| 91 "device/android_device_info_query.cc", | 93 "device/android_device_info_query.cc", |
| 92 "device/android_device_manager.cc", | 94 "device/android_device_manager.cc", |
| 93 "device/android_device_manager.h", | 95 "device/android_device_manager.h", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "remote_debugging_server.h", | 136 "remote_debugging_server.h", |
| 135 ] | 137 ] |
| 136 if (enable_service_discovery) { | 138 if (enable_service_discovery) { |
| 137 sources += [ | 139 sources += [ |
| 138 "device/cast_device_provider.cc", | 140 "device/cast_device_provider.cc", |
| 139 "device/cast_device_provider.h", | 141 "device/cast_device_provider.h", |
| 140 ] | 142 ] |
| 141 } | 143 } |
| 142 } | 144 } |
| 143 } | 145 } |
| OLD | NEW |