| 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 inputs = [ blink_protocol ] |
| 10 outputs = [ | 10 outputs = [ |
| 11 "$target_gen_dir/devtools_protocol_constants.cc", | 11 "$target_gen_dir/devtools_protocol_constants.cc", |
| 12 "$target_gen_dir/devtools_protocol_constants.h", | 12 "$target_gen_dir/devtools_protocol_constants.h", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 args = [ "chrome" ] | 15 args = [ "chrome" ] |
| 16 args += rebase_path(outputs, root_build_dir) | 16 args += rebase_path(outputs, root_build_dir) |
| 17 args += [ rebase_path(blink_protocol, root_build_dir) ] | 17 args += [ rebase_path(blink_protocol, root_build_dir) ] |
| 18 } | 18 } |
| 19 | 19 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "devtools_file_system_indexer.cc", | 116 "devtools_file_system_indexer.cc", |
| 117 "devtools_target_impl.cc", | 117 "devtools_target_impl.cc", |
| 118 "devtools_window.cc", | 118 "devtools_window.cc", |
| 119 "devtools_window_base.cc", | 119 "devtools_window_base.cc", |
| 120 "remote_debugging_server.cc", | 120 "remote_debugging_server.cc", |
| 121 ] | 121 ] |
| 122 } else { | 122 } else { |
| 123 deps += [ "//third_party/libusb" ] | 123 deps += [ "//third_party/libusb" ] |
| 124 } | 124 } |
| 125 } | 125 } |
| OLD | NEW |