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

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: Rebase Created 3 years, 4 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 "DictionaryHelperForModules.cpp", 16 "DictionaryHelperForModules.cpp",
17 "ModuleBindingsInitializer.cpp", 17 "ModuleBindingsInitializer.cpp",
18 "ModuleBindingsInitializer.h", 18 "ModuleBindingsInitializer.h",
19 "ToV8ForModules.h", 19 "ToV8ForModules.h",
20 "V8BindingForModules.cpp", 20 "V8BindingForModules.cpp",
21 "V8BindingForModules.h", 21 "V8BindingForModules.h",
22 "V8ContextSnapshotExternalReferences.h",
22 "wasm/WasmResponseExtensions.cpp", 23 "wasm/WasmResponseExtensions.cpp",
23 "wasm/WasmResponseExtensions.h", 24 "wasm/WasmResponseExtensions.h",
24 "WebGLAny.cpp", 25 "WebGLAny.cpp",
25 "WebGLAny.h", 26 "WebGLAny.h",
26 ], 27 ],
27 "abspath") + bindings_modules_v8_custom_files 28 "abspath") + bindings_modules_v8_custom_files
28 29
29 bindings_modules_v8_unittest_files = 30 bindings_modules_v8_unittest_files =
30 get_path_info([ 31 get_path_info([
31 "serialization/V8ScriptValueSerializerForModulesTest.cpp", 32 "serialization/V8ScriptValueSerializerForModulesTest.cpp",
32 "V8BindingForModulesTest.cpp", 33 "V8BindingForModulesTest.cpp",
33 ], 34 ],
34 "abspath") 35 "abspath")
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698