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 source_prereqs = [ blink_protocol ] | 9 source_prereqs = [ blink_protocol ] |
10 outputs = [ | 10 outputs = [ |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 "//skia", | 108 "//skia", |
109 "//third_party/icu", | 109 "//third_party/icu", |
110 "//third_party/leveldatabase", | 110 "//third_party/leveldatabase", |
111 ] | 111 ] |
112 if (is_android) { | 112 if (is_android) { |
113 sources -= [ | 113 sources -= [ |
114 "device/usb/android_rsa.cc", | 114 "device/usb/android_rsa.cc", |
115 "browser_list_tabcontents_provider.cc", | 115 "browser_list_tabcontents_provider.cc", |
116 "devtools_file_system_indexer.cc", | 116 "devtools_file_system_indexer.cc", |
117 "devtools_target_impl.cc", | 117 "devtools_target_impl.cc", |
| 118 "devtools_ui_bindings.cc", |
118 "devtools_window.cc", | 119 "devtools_window.cc", |
119 "devtools_window_base.cc", | 120 "devtools_window_base.cc", |
120 "remote_debugging_server.cc", | 121 "remote_debugging_server.cc", |
121 ] | 122 ] |
122 } else { | 123 } else { |
123 deps += [ "//third_party/libusb" ] | 124 deps += [ "//third_party/libusb" ] |
124 } | 125 } |
125 } | 126 } |
OLD | NEW |