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 import("//third_party/WebKit/Source/bindings/bindings.gni") | 5 import("//third_party/WebKit/Source/bindings/bindings.gni") |
6 import("//third_party/WebKit/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
7 | 7 |
8 action("instrumentation_sources") { | 8 action("instrumentation_sources") { |
9 script = "CodeGeneratorInstrumentation.py" | 9 script = "CodeGeneratorInstrumentation.py" |
10 | 10 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 "core/inspector/protocol", | 114 "core/inspector/protocol", |
115 ] | 115 ] |
116 } | 116 } |
117 | 117 |
118 action("protocol_version") { | 118 action("protocol_version") { |
119 script = | 119 script = |
120 "../../platform/inspector_protocol/generate-inspector-protocol-version" | 120 "../../platform/inspector_protocol/generate-inspector-protocol-version" |
121 | 121 |
122 inputs = [ | 122 inputs = [ |
123 "browser_protocol.json", | 123 "browser_protocol.json", |
| 124 "../../platform/v8_inspector/js_protocol.json", |
124 ] | 125 ] |
125 output_file = "$blink_core_output_dir/inspector/protocol.json" | 126 output_file = "$blink_core_output_dir/inspector/protocol.json" |
126 outputs = [ | 127 outputs = [ |
127 output_file, | 128 output_file, |
128 ] | 129 ] |
129 | 130 |
130 args = [ | 131 args = [ |
131 "--o", | 132 "--o", |
132 rebase_path(output_file, root_build_dir), | 133 rebase_path(output_file, root_build_dir), |
133 rebase_path("browser_protocol.json", root_build_dir), | 134 rebase_path("browser_protocol.json", root_build_dir), |
134 rebase_path("../../platform/v8_inspector/js_protocol.json", root_build_dir), | 135 rebase_path("../../platform/v8_inspector/js_protocol.json", root_build_dir), |
135 ] | 136 ] |
136 } | 137 } |
OLD | NEW |