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 = "//third_party/WebKit/Source/platform/inspector_protocol" | 7 _inspector_protocol = "//third_party/WebKit/Source/platform/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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 "$target_gen_dir/../../include", | 124 "$target_gen_dir/../../include", |
125 ] | 125 ] |
126 sources = rebase_path(_protocol_generated, ".", target_gen_dir) | 126 sources = rebase_path(_protocol_generated, ".", target_gen_dir) |
127 sources += [ | 127 sources += [ |
128 "../../include/v8-inspector-protocol.h", | 128 "../../include/v8-inspector-protocol.h", |
129 "../../include/v8-inspector.h", | 129 "../../include/v8-inspector.h", |
130 ] | 130 ] |
131 sources += get_target_outputs(":inspector_injected_script") | 131 sources += get_target_outputs(":inspector_injected_script") |
132 sources += get_target_outputs(":inspector_debugger_script") | 132 sources += get_target_outputs(":inspector_debugger_script") |
133 sources += [ | 133 sources += [ |
134 "Allocator.h", | |
135 "InjectedScript.cpp", | 134 "InjectedScript.cpp", |
136 "InjectedScript.h", | 135 "InjectedScript.h", |
137 "InjectedScriptNative.cpp", | 136 "InjectedScriptNative.cpp", |
138 "InjectedScriptNative.h", | 137 "InjectedScriptNative.h", |
139 "InspectedContext.cpp", | 138 "InspectedContext.cpp", |
140 "InspectedContext.h", | 139 "InspectedContext.h", |
141 "JavaScriptCallFrame.cpp", | 140 "JavaScriptCallFrame.cpp", |
142 "JavaScriptCallFrame.h", | 141 "JavaScriptCallFrame.h", |
143 "ProtocolPlatform.h", | 142 "ProtocolPlatform.h", |
144 "RemoteObjectId.cpp", | 143 "RemoteObjectId.cpp", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 "V8RuntimeAgentImpl.cpp", | 180 "V8RuntimeAgentImpl.cpp", |
182 "V8RuntimeAgentImpl.h", | 181 "V8RuntimeAgentImpl.h", |
183 "V8SchemaAgentImpl.cpp", | 182 "V8SchemaAgentImpl.cpp", |
184 "V8SchemaAgentImpl.h", | 183 "V8SchemaAgentImpl.h", |
185 "V8StackTraceImpl.cpp", | 184 "V8StackTraceImpl.cpp", |
186 "V8StackTraceImpl.h", | 185 "V8StackTraceImpl.h", |
187 "V8ValueCopier.cpp", | 186 "V8ValueCopier.cpp", |
188 "V8ValueCopier.h", | 187 "V8ValueCopier.h", |
189 ] | 188 ] |
190 } | 189 } |
OLD | NEW |