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 action("devtools_protocol_constants") { | 5 action("devtools_protocol_constants") { |
6 script = "//content/public/browser/devtools_protocol_constants_generator.py" | 6 script = "//content/public/browser/devtools_protocol_constants_generator.py" |
7 | 7 |
8 blink_protocol = "//third_party/WebKit/Source/devtools/protocol.json" | 8 blink_protocol = "//third_party/WebKit/Source/devtools/protocol.json" |
9 inputs = [ blink_protocol ] | 9 inputs = [ blink_protocol ] |
10 outputs = [ | 10 outputs = [ |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 "//net", | 57 "//net", |
58 ] | 58 ] |
59 | 59 |
60 if (!is_android) { | 60 if (!is_android) { |
61 deps += [ | 61 deps += [ |
62 "//chrome:extra_resources", | 62 "//chrome:extra_resources", |
63 "//chrome:resources", | 63 "//chrome:resources", |
64 "//chrome:strings", | 64 "//chrome:strings", |
65 "//chrome/app/theme:theme_resources", | 65 "//chrome/app/theme:theme_resources", |
66 "//chrome/common/extensions/api", | 66 "//chrome/common/extensions/api", |
67 "//chrome/common/extensions/api:api_registration", | |
68 "//net:http_server", | 67 "//net:http_server", |
69 "//skia", | 68 "//skia", |
70 "//third_party/icu", | 69 "//third_party/icu", |
71 "//third_party/leveldatabase", | 70 "//third_party/leveldatabase", |
72 "//third_party/libusb" | 71 "//third_party/libusb" |
73 ] | 72 ] |
74 sources += [ | 73 sources += [ |
75 "device/adb/adb_client_socket.cc", | 74 "device/adb/adb_client_socket.cc", |
76 "device/adb/adb_client_socket.h", | 75 "device/adb/adb_client_socket.h", |
77 "device/adb/adb_device_info_query.cc", | 76 "device/adb/adb_device_info_query.cc", |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 "devtools_toggle_action.h", | 112 "devtools_toggle_action.h", |
114 "devtools_ui_bindings.cc", | 113 "devtools_ui_bindings.cc", |
115 "devtools_ui_bindings.h", | 114 "devtools_ui_bindings.h", |
116 "devtools_window.cc", | 115 "devtools_window.cc", |
117 "devtools_window.h", | 116 "devtools_window.h", |
118 "remote_debugging_server.cc", | 117 "remote_debugging_server.cc", |
119 "remote_debugging_server.h" | 118 "remote_debugging_server.h" |
120 ] | 119 ] |
121 } | 120 } |
122 } | 121 } |
OLD | NEW |