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", |
67 "//net:http_server", | 68 "//net:http_server", |
68 "//skia", | 69 "//skia", |
69 "//third_party/icu", | 70 "//third_party/icu", |
70 "//third_party/leveldatabase", | 71 "//third_party/leveldatabase", |
71 "//third_party/libusb" | 72 "//third_party/libusb" |
72 ] | 73 ] |
73 sources += [ | 74 sources += [ |
74 "device/adb/adb_client_socket.cc", | 75 "device/adb/adb_client_socket.cc", |
75 "device/adb/adb_client_socket.h", | 76 "device/adb/adb_client_socket.h", |
76 "device/adb/adb_device_info_query.cc", | 77 "device/adb/adb_device_info_query.cc", |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 "devtools_toggle_action.h", | 113 "devtools_toggle_action.h", |
113 "devtools_ui_bindings.cc", | 114 "devtools_ui_bindings.cc", |
114 "devtools_ui_bindings.h", | 115 "devtools_ui_bindings.h", |
115 "devtools_window.cc", | 116 "devtools_window.cc", |
116 "devtools_window.h", | 117 "devtools_window.h", |
117 "remote_debugging_server.cc", | 118 "remote_debugging_server.cc", |
118 "remote_debugging_server.h" | 119 "remote_debugging_server.h" |
119 ] | 120 ] |
120 } | 121 } |
121 } | 122 } |
OLD | NEW |