| OLD | NEW |
| 1 # Copyright 2016 the V8 project authors. All rights reserved. | 1 # Copyright 2016 the V8 project 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("../../gni/v8.gni") | 5 import("../../gni/v8.gni") |
| 6 | 6 |
| 7 _inspector_protocol = v8_path_prefix + "/third_party/inspector_protocol" | 7 _inspector_protocol = v8_path_prefix + "/third_party/inspector_protocol" |
| 8 import("$_inspector_protocol/inspector_protocol.gni") | 8 import("$_inspector_protocol/inspector_protocol.gni") |
| 9 | 9 |
| 10 _protocol_generated = [ | 10 _protocol_generated = [ |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "java-script-call-frame.h", | 142 "java-script-call-frame.h", |
| 143 "remote-object-id.cc", | 143 "remote-object-id.cc", |
| 144 "remote-object-id.h", | 144 "remote-object-id.h", |
| 145 "script-breakpoint.h", | 145 "script-breakpoint.h", |
| 146 "search-util.cc", | 146 "search-util.cc", |
| 147 "search-util.h", | 147 "search-util.h", |
| 148 "string-16.cc", | 148 "string-16.cc", |
| 149 "string-16.h", | 149 "string-16.h", |
| 150 "string-util.cc", | 150 "string-util.cc", |
| 151 "string-util.h", | 151 "string-util.h", |
| 152 "test-interface.cc", |
| 153 "test-interface.h", |
| 152 "v8-console-agent-impl.cc", | 154 "v8-console-agent-impl.cc", |
| 153 "v8-console-agent-impl.h", | 155 "v8-console-agent-impl.h", |
| 154 "v8-console-message.cc", | 156 "v8-console-message.cc", |
| 155 "v8-console-message.h", | 157 "v8-console-message.h", |
| 156 "v8-console.cc", | 158 "v8-console.cc", |
| 157 "v8-console.h", | 159 "v8-console.h", |
| 158 "v8-debugger-agent-impl.cc", | 160 "v8-debugger-agent-impl.cc", |
| 159 "v8-debugger-agent-impl.h", | 161 "v8-debugger-agent-impl.h", |
| 160 "v8-debugger-script.cc", | 162 "v8-debugger-script.cc", |
| 161 "v8-debugger-script.h", | 163 "v8-debugger-script.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 182 "v8-schema-agent-impl.cc", | 184 "v8-schema-agent-impl.cc", |
| 183 "v8-schema-agent-impl.h", | 185 "v8-schema-agent-impl.h", |
| 184 "v8-stack-trace-impl.cc", | 186 "v8-stack-trace-impl.cc", |
| 185 "v8-stack-trace-impl.h", | 187 "v8-stack-trace-impl.h", |
| 186 "v8-value-copier.cc", | 188 "v8-value-copier.cc", |
| 187 "v8-value-copier.h", | 189 "v8-value-copier.h", |
| 188 "wasm-translation.cc", | 190 "wasm-translation.cc", |
| 189 "wasm-translation.h", | 191 "wasm-translation.h", |
| 190 ] | 192 ] |
| 191 } | 193 } |
| OLD | NEW |