| 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 12 matching lines...) Expand all Loading... |
| 23 args = [ "chrome" ] | 23 args = [ "chrome" ] |
| 24 args += rebase_path(outputs, root_build_dir) | 24 args += rebase_path(outputs, root_build_dir) |
| 25 args += [ rebase_path(blink_protocol, root_build_dir) ] | 25 args += [ rebase_path(blink_protocol, root_build_dir) ] |
| 26 args += [ rebase_path(browser_protocol, root_build_dir) ] | 26 args += [ rebase_path(browser_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", |
| 33 "devtools_network_conditions.cc", | 35 "devtools_network_conditions.cc", |
| 34 "devtools_network_conditions.h", | 36 "devtools_network_conditions.h", |
| 35 "devtools_network_controller.cc", | 37 "devtools_network_controller.cc", |
| 36 "devtools_network_controller.h", | 38 "devtools_network_controller.h", |
| 37 "devtools_network_interceptor.cc", | 39 "devtools_network_interceptor.cc", |
| 38 "devtools_network_interceptor.h", | 40 "devtools_network_interceptor.h", |
| 39 "devtools_network_protocol_handler.cc", | 41 "devtools_network_protocol_handler.cc", |
| 40 "devtools_network_protocol_handler.h", | 42 "devtools_network_protocol_handler.h", |
| 41 "devtools_network_transaction.cc", | 43 "devtools_network_transaction.cc", |
| 42 "devtools_network_transaction.h", | 44 "devtools_network_transaction.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 72 "//net:http_server", | 74 "//net:http_server", |
| 73 "//skia", | 75 "//skia", |
| 74 "//third_party/icu", | 76 "//third_party/icu", |
| 75 "//third_party/leveldatabase", | 77 "//third_party/leveldatabase", |
| 76 "//third_party/libusb", | 78 "//third_party/libusb", |
| 77 ":webrtc_device_provider_resources", | 79 ":webrtc_device_provider_resources", |
| 78 ] | 80 ] |
| 79 sources += [ | 81 sources += [ |
| 80 "chrome_devtools_discovery_provider.cc", | 82 "chrome_devtools_discovery_provider.cc", |
| 81 "chrome_devtools_discovery_provider.h", | 83 "chrome_devtools_discovery_provider.h", |
| 82 "chrome_devtools_manager_delegate.cc", | |
| 83 "chrome_devtools_manager_delegate.h", | |
| 84 "device/adb/adb_client_socket.cc", | 84 "device/adb/adb_client_socket.cc", |
| 85 "device/adb/adb_client_socket.h", | 85 "device/adb/adb_client_socket.h", |
| 86 "device/adb/adb_device_provider.cc", | 86 "device/adb/adb_device_provider.cc", |
| 87 "device/adb/adb_device_provider.h", | 87 "device/adb/adb_device_provider.h", |
| 88 "device/android_device_info_query.cc", | 88 "device/android_device_info_query.cc", |
| 89 "device/android_device_manager.cc", | 89 "device/android_device_manager.cc", |
| 90 "device/android_device_manager.h", | 90 "device/android_device_manager.h", |
| 91 "device/android_web_socket.cc", | 91 "device/android_web_socket.cc", |
| 92 "device/devtools_android_bridge.cc", | 92 "device/devtools_android_bridge.cc", |
| 93 "device/devtools_android_bridge.h", | 93 "device/devtools_android_bridge.h", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 source = "device/webrtc/resources.grd" | 141 source = "device/webrtc/resources.grd" |
| 142 output_dir = "$root_gen_dir/chrome" | 142 output_dir = "$root_gen_dir/chrome" |
| 143 outputs = [ | 143 outputs = [ |
| 144 "grit/webrtc_device_provider_resources.h", | 144 "grit/webrtc_device_provider_resources.h", |
| 145 "grit/webrtc_device_provider_resources_map.cc", | 145 "grit/webrtc_device_provider_resources_map.cc", |
| 146 "grit/webrtc_device_provider_resources_map.h", | 146 "grit/webrtc_device_provider_resources_map.h", |
| 147 "webrtc_device_provider_resources.pak", | 147 "webrtc_device_provider_resources.pak", |
| 148 ] | 148 ] |
| 149 } | 149 } |
| 150 } | 150 } |
| OLD | NEW |