| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 "//chrome:strings", | 75 "//chrome:strings", |
| 76 "//chrome/app/theme:theme_resources", | 76 "//chrome/app/theme:theme_resources", |
| 77 "//chrome/common/extensions/api", | 77 "//chrome/common/extensions/api", |
| 78 "//components/devtools_http_handler", | 78 "//components/devtools_http_handler", |
| 79 "//net:http_server", | 79 "//net:http_server", |
| 80 "//skia", | 80 "//skia", |
| 81 "//third_party/icu", | 81 "//third_party/icu", |
| 82 "//third_party/leveldatabase", | 82 "//third_party/leveldatabase", |
| 83 ] | 83 ] |
| 84 sources += [ | 84 sources += [ |
| 85 "chrome_devtools_discovery_provider.cc", | |
| 86 "chrome_devtools_discovery_provider.h", | |
| 87 "device/adb/adb_client_socket.cc", | 85 "device/adb/adb_client_socket.cc", |
| 88 "device/adb/adb_client_socket.h", | 86 "device/adb/adb_client_socket.h", |
| 89 "device/adb/adb_device_provider.cc", | 87 "device/adb/adb_device_provider.cc", |
| 90 "device/adb/adb_device_provider.h", | 88 "device/adb/adb_device_provider.h", |
| 91 "device/android_device_info_query.cc", | 89 "device/android_device_info_query.cc", |
| 92 "device/android_device_manager.cc", | 90 "device/android_device_manager.cc", |
| 93 "device/android_device_manager.h", | 91 "device/android_device_manager.h", |
| 94 "device/android_web_socket.cc", | 92 "device/android_web_socket.cc", |
| 95 "device/devtools_android_bridge.cc", | 93 "device/devtools_android_bridge.cc", |
| 96 "device/devtools_android_bridge.h", | 94 "device/devtools_android_bridge.h", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 "remote_debugging_server.h", | 130 "remote_debugging_server.h", |
| 133 ] | 131 ] |
| 134 if (enable_service_discovery) { | 132 if (enable_service_discovery) { |
| 135 sources += [ | 133 sources += [ |
| 136 "device/cast_device_provider.cc", | 134 "device/cast_device_provider.cc", |
| 137 "device/cast_device_provider.h", | 135 "device/cast_device_provider.h", |
| 138 ] | 136 ] |
| 139 } | 137 } |
| 140 } | 138 } |
| 141 } | 139 } |
| OLD | NEW |