| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "//ui/events:dom_keycode_converter", | 66 "//ui/events:dom_keycode_converter", |
| 67 ] | 67 ] |
| 68 | 68 |
| 69 if (!is_android) { | 69 if (!is_android) { |
| 70 deps += [ | 70 deps += [ |
| 71 "//chrome:extra_resources", | 71 "//chrome:extra_resources", |
| 72 "//chrome:resources", | 72 "//chrome:resources", |
| 73 "//chrome:strings", | 73 "//chrome:strings", |
| 74 "//chrome/app/theme:theme_resources", | 74 "//chrome/app/theme:theme_resources", |
| 75 "//chrome/common/extensions/api", | 75 "//chrome/common/extensions/api", |
| 76 "//components/devtools_http_handler", | |
| 77 "//net:http_server", | 76 "//net:http_server", |
| 78 "//skia", | 77 "//skia", |
| 79 "//third_party/icu", | 78 "//third_party/icu", |
| 80 "//third_party/leveldatabase", | 79 "//third_party/leveldatabase", |
| 81 ] | 80 ] |
| 82 sources += [ | 81 sources += [ |
| 83 "chrome_devtools_manager_delegate.cc", | 82 "chrome_devtools_manager_delegate.cc", |
| 84 "chrome_devtools_manager_delegate.h", | 83 "chrome_devtools_manager_delegate.h", |
| 85 "device/adb/adb_client_socket.cc", | 84 "device/adb/adb_client_socket.cc", |
| 86 "device/adb/adb_client_socket.h", | 85 "device/adb/adb_client_socket.h", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 "remote_debugging_server.h", | 129 "remote_debugging_server.h", |
| 131 ] | 130 ] |
| 132 if (enable_service_discovery) { | 131 if (enable_service_discovery) { |
| 133 sources += [ | 132 sources += [ |
| 134 "device/cast_device_provider.cc", | 133 "device/cast_device_provider.cc", |
| 135 "device/cast_device_provider.h", | 134 "device/cast_device_provider.h", |
| 136 ] | 135 ] |
| 137 } | 136 } |
| 138 } | 137 } |
| 139 } | 138 } |
| OLD | NEW |