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 12 matching lines...) Expand all Loading... |
23 | 23 |
24 args = [ "chrome" ] | 24 args = [ "chrome" ] |
25 args += rebase_path(outputs, root_build_dir) | 25 args += rebase_path(outputs, root_build_dir) |
26 args += [ rebase_path(blink_protocol, root_build_dir) ] | 26 args += [ rebase_path(blink_protocol, root_build_dir) ] |
27 } | 27 } |
28 | 28 |
29 # GYP version: chrome/chrome_debugger.gypi:debugger | 29 # GYP version: chrome/chrome_debugger.gypi:debugger |
30 static_library("devtools") { | 30 static_library("devtools") { |
31 # Note: new sources and deps should be generally added in (!is_android) below. | 31 # Note: new sources and deps should be generally added in (!is_android) below. |
32 sources = [ | 32 sources = [ |
33 "chrome_devtools_manager_delegate.cc", | |
34 "chrome_devtools_manager_delegate.h", | |
35 "devtools_network_conditions.cc", | 33 "devtools_network_conditions.cc", |
36 "devtools_network_conditions.h", | 34 "devtools_network_conditions.h", |
37 "devtools_network_controller.cc", | 35 "devtools_network_controller.cc", |
38 "devtools_network_controller.h", | 36 "devtools_network_controller.h", |
39 "devtools_network_controller_handle.cc", | 37 "devtools_network_controller_handle.cc", |
40 "devtools_network_controller_handle.h", | 38 "devtools_network_controller_handle.h", |
41 "devtools_network_interceptor.cc", | 39 "devtools_network_interceptor.cc", |
42 "devtools_network_interceptor.h", | 40 "devtools_network_interceptor.h", |
43 "devtools_network_protocol_handler.cc", | 41 "devtools_network_protocol_handler.cc", |
44 "devtools_network_protocol_handler.h", | 42 "devtools_network_protocol_handler.h", |
(...skipping 30 matching lines...) Expand all Loading... |
75 "//chrome:strings", | 73 "//chrome:strings", |
76 "//chrome/app/theme:theme_resources", | 74 "//chrome/app/theme:theme_resources", |
77 "//chrome/common/extensions/api", | 75 "//chrome/common/extensions/api", |
78 "//components/devtools_http_handler", | 76 "//components/devtools_http_handler", |
79 "//net:http_server", | 77 "//net:http_server", |
80 "//skia", | 78 "//skia", |
81 "//third_party/icu", | 79 "//third_party/icu", |
82 "//third_party/leveldatabase", | 80 "//third_party/leveldatabase", |
83 ] | 81 ] |
84 sources += [ | 82 sources += [ |
85 "chrome_devtools_discovery_provider.cc", | 83 "chrome_devtools_manager_delegate.cc", |
86 "chrome_devtools_discovery_provider.h", | 84 "chrome_devtools_manager_delegate.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 |