Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: third_party/WebKit/Source/bindings/bindings.gni

Issue 2857143005: Gather serialization-related code into a directory. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/GeneratedCodeHelper.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # All paths in this file should be absolute so it can be imported into 5 # All paths in this file should be absolute so it can be imported into
6 # different contexts. 6 # different contexts.
7 7
8 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") 8 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni")
9 9
10 bindings_core_v8_files = 10 bindings_core_v8_files =
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 "core/v8/ScriptSourceCode.cpp", 95 "core/v8/ScriptSourceCode.cpp",
96 "core/v8/ScriptSourceCode.h", 96 "core/v8/ScriptSourceCode.h",
97 "core/v8/ScriptStreamer.cpp", 97 "core/v8/ScriptStreamer.cpp",
98 "core/v8/ScriptStreamer.h", 98 "core/v8/ScriptStreamer.h",
99 "core/v8/ScriptStreamerThread.cpp", 99 "core/v8/ScriptStreamerThread.cpp",
100 "core/v8/ScriptStreamerThread.h", 100 "core/v8/ScriptStreamerThread.h",
101 "core/v8/ScriptString.cpp", 101 "core/v8/ScriptString.cpp",
102 "core/v8/ScriptString.h", 102 "core/v8/ScriptString.h",
103 "core/v8/ScriptValue.cpp", 103 "core/v8/ScriptValue.cpp",
104 "core/v8/ScriptValue.h", 104 "core/v8/ScriptValue.h",
105 "core/v8/SerializationTag.h",
106 "core/v8/SerializedScriptValue.cpp",
107 "core/v8/SerializedScriptValue.h",
108 "core/v8/SerializedScriptValueFactory.cpp",
109 "core/v8/SerializedScriptValueFactory.h",
110 "core/v8/SourceLocation.cpp", 105 "core/v8/SourceLocation.cpp",
111 "core/v8/SourceLocation.h", 106 "core/v8/SourceLocation.h",
112 "core/v8/ToV8ForCore.cpp", 107 "core/v8/ToV8ForCore.cpp",
113 "core/v8/ToV8ForCore.h", 108 "core/v8/ToV8ForCore.h",
114 "core/v8/Transferables.h",
115 "core/v8/UseCounterCallback.cpp", 109 "core/v8/UseCounterCallback.cpp",
116 "core/v8/UseCounterCallback.h", 110 "core/v8/UseCounterCallback.h",
117 "core/v8/V8AbstractEventListener.cpp", 111 "core/v8/V8AbstractEventListener.cpp",
118 "core/v8/V8AbstractEventListener.h", 112 "core/v8/V8AbstractEventListener.h",
119 "core/v8/V8BindingForCore.cpp", 113 "core/v8/V8BindingForCore.cpp",
120 "core/v8/V8BindingForCore.h", 114 "core/v8/V8BindingForCore.h",
121 "core/v8/V8CacheOptions.h", 115 "core/v8/V8CacheOptions.h",
122 "core/v8/V8CacheStrategiesForCacheStorage.h", 116 "core/v8/V8CacheStrategiesForCacheStorage.h",
123 "core/v8/V8CrossOriginSetterInfo.h", 117 "core/v8/V8CrossOriginSetterInfo.h",
124 "core/v8/V8DOMActivityLogger.cpp", 118 "core/v8/V8DOMActivityLogger.cpp",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 "core/v8/V8WorkerGlobalScopeEventListener.h", 167 "core/v8/V8WorkerGlobalScopeEventListener.h",
174 "core/v8/WindowProxy.cpp", 168 "core/v8/WindowProxy.cpp",
175 "core/v8/WindowProxy.h", 169 "core/v8/WindowProxy.h",
176 "core/v8/WindowProxyManager.cpp", 170 "core/v8/WindowProxyManager.cpp",
177 "core/v8/WindowProxyManager.h", 171 "core/v8/WindowProxyManager.h",
178 "core/v8/WorkerOrWorkletScriptController.cpp", 172 "core/v8/WorkerOrWorkletScriptController.cpp",
179 "core/v8/WorkerOrWorkletScriptController.h", 173 "core/v8/WorkerOrWorkletScriptController.h",
180 "core/v8/WorkerV8Settings.h", 174 "core/v8/WorkerV8Settings.h",
181 "core/v8/WrapperCreationSecurityCheck.h", 175 "core/v8/WrapperCreationSecurityCheck.h",
182 "core/v8/WrapperTypeInfo.h", 176 "core/v8/WrapperTypeInfo.h",
177 "core/v8/serialization/SerializationTag.h",
178 "core/v8/serialization/SerializedScriptValue.cpp",
179 "core/v8/serialization/SerializedScriptValue.h",
180 "core/v8/serialization/SerializedScriptValueFactory.cpp",
181 "core/v8/serialization/SerializedScriptValueFactory.h",
182 "core/v8/serialization/Transferables.h",
183 "core/v8/serialization/V8ScriptValueDeserializer.cpp", 183 "core/v8/serialization/V8ScriptValueDeserializer.cpp",
184 "core/v8/serialization/V8ScriptValueDeserializer.h", 184 "core/v8/serialization/V8ScriptValueDeserializer.h",
185 "core/v8/serialization/V8ScriptValueSerializer.cpp", 185 "core/v8/serialization/V8ScriptValueSerializer.cpp",
186 "core/v8/serialization/V8ScriptValueSerializer.h", 186 "core/v8/serialization/V8ScriptValueSerializer.h",
187 ], 187 ],
188 "abspath") 188 "abspath")
189 189
190 bindings_dir = get_path_info(".", "abspath") 190 bindings_dir = get_path_info(".", "abspath")
191 blink_output_dir = "$root_gen_dir/blink" 191 blink_output_dir = "$root_gen_dir/blink"
192 bindings_output_dir = "$root_gen_dir/blink/bindings" 192 bindings_output_dir = "$root_gen_dir/blink/bindings"
193 bindings_core_v8_output_dir = "$bindings_output_dir/core/v8" 193 bindings_core_v8_output_dir = "$bindings_output_dir/core/v8"
194 194
195 bindings_unittest_files = 195 bindings_unittest_files =
196 get_path_info([ 196 get_path_info([
197 "core/v8/DocumentWriteEvaluatorTest.cpp", 197 "core/v8/DocumentWriteEvaluatorTest.cpp",
198 "core/v8/DOMWrapperWorldTest.cpp", 198 "core/v8/DOMWrapperWorldTest.cpp",
199 "core/v8/IDLTypesTest.cpp", 199 "core/v8/IDLTypesTest.cpp",
200 "core/v8/NativeValueTraitsImplTest.cpp", 200 "core/v8/NativeValueTraitsImplTest.cpp",
201 "core/v8/NativeValueTraitsTest.cpp", 201 "core/v8/NativeValueTraitsTest.cpp",
202 "core/v8/ScriptModuleTest.cpp", 202 "core/v8/ScriptModuleTest.cpp",
203 "core/v8/ScriptPromisePropertyTest.cpp", 203 "core/v8/ScriptPromisePropertyTest.cpp",
204 "core/v8/ScriptPromiseResolverTest.cpp", 204 "core/v8/ScriptPromiseResolverTest.cpp",
205 "core/v8/ScriptPromiseTest.cpp", 205 "core/v8/ScriptPromiseTest.cpp",
206 "core/v8/ScriptStreamerTest.cpp", 206 "core/v8/ScriptStreamerTest.cpp",
207 "core/v8/ScriptWrappableVisitorTest.cpp", 207 "core/v8/ScriptWrappableVisitorTest.cpp",
208 "core/v8/SerializedScriptValueTest.cpp",
209 "core/v8/ToV8Test.cpp", 208 "core/v8/ToV8Test.cpp",
210 "core/v8/TraceWrapperMemberTest.cpp", 209 "core/v8/TraceWrapperMemberTest.cpp",
211 "core/v8/V8BindingForTesting.cpp", 210 "core/v8/V8BindingForTesting.cpp",
212 "core/v8/V8BindingForTesting.h", 211 "core/v8/V8BindingForTesting.h",
213 "core/v8/V8BindingTest.cpp", 212 "core/v8/V8BindingTest.cpp",
214 "core/v8/V8ObjectBuilderTest.cpp", 213 "core/v8/V8ObjectBuilderTest.cpp",
215 "core/v8/V8ScriptRunnerTest.cpp", 214 "core/v8/V8ScriptRunnerTest.cpp",
215 "core/v8/serialization/SerializedScriptValueTest.cpp",
216 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", 216 "core/v8/serialization/V8ScriptValueSerializerTest.cpp",
217 ], 217 ],
218 "abspath") 218 "abspath")
219 bindings_unittest_files += bindings_modules_v8_unittest_files 219 bindings_unittest_files += bindings_modules_v8_unittest_files
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/GeneratedCodeHelper.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698