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

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

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Work for comments Created 3 years, 5 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
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 import("custom/custom.gni") 5 import("custom/custom.gni")
6 6
7 # Make the files absolute so they can be imported to anywhere. 7 # Make the files absolute so they can be imported to anywhere.
8 bindings_modules_v8_files = 8 bindings_modules_v8_files =
9 get_path_info([ 9 get_path_info([
10 "serialization/SerializedScriptValueForModulesFactory.cpp", 10 "serialization/SerializedScriptValueForModulesFactory.cpp",
11 "serialization/SerializedScriptValueForModulesFactory.h", 11 "serialization/SerializedScriptValueForModulesFactory.h",
12 "serialization/V8ScriptValueDeserializerForModules.cpp", 12 "serialization/V8ScriptValueDeserializerForModules.cpp",
13 "serialization/V8ScriptValueDeserializerForModules.h", 13 "serialization/V8ScriptValueDeserializerForModules.h",
14 "serialization/V8ScriptValueSerializerForModules.cpp", 14 "serialization/V8ScriptValueSerializerForModules.cpp",
15 "serialization/V8ScriptValueSerializerForModules.h", 15 "serialization/V8ScriptValueSerializerForModules.h",
16 "ConditionalFeaturesForModules.cpp", 16 "ConditionalFeaturesForModules.cpp",
17 "ConditionalFeaturesForModules.h", 17 "ConditionalFeaturesForModules.h",
18 "DictionaryHelperForModules.cpp", 18 "DictionaryHelperForModules.cpp",
19 "ModuleBindingsInitializer.cpp", 19 "ModuleBindingsInitializer.cpp",
20 "ModuleBindingsInitializer.h", 20 "ModuleBindingsInitializer.h",
21 "ToV8ForModules.h", 21 "ToV8ForModules.h",
22 "V8BindingForModules.cpp", 22 "V8BindingForModules.cpp",
23 "V8BindingForModules.h", 23 "V8BindingForModules.h",
24 "V8ContextSnapshotExternalReferences.h",
24 "wasm/WasmResponseExtensions.cpp", 25 "wasm/WasmResponseExtensions.cpp",
25 "wasm/WasmResponseExtensions.h", 26 "wasm/WasmResponseExtensions.h",
26 "WebGLAny.cpp", 27 "WebGLAny.cpp",
27 "WebGLAny.h", 28 "WebGLAny.h",
28 ], 29 ],
29 "abspath") + bindings_modules_v8_custom_files 30 "abspath") + bindings_modules_v8_custom_files
30 31
31 bindings_modules_v8_unittest_files = 32 bindings_modules_v8_unittest_files =
32 get_path_info([ 33 get_path_info([
33 "serialization/V8ScriptValueSerializerForModulesTest.cpp", 34 "serialization/V8ScriptValueSerializerForModulesTest.cpp",
34 "V8BindingForModulesTest.cpp", 35 "V8BindingForModulesTest.cpp",
35 ], 36 ],
36 "abspath") 37 "abspath")
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698