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

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

Issue 2780693003: [wasm] response-based compile APIs (Closed)
Patch Set: simplify Created 3 years, 8 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/V8ScriptValueDeserializerForModules.cpp", 10 "serialization/V8ScriptValueDeserializerForModules.cpp",
11 "serialization/V8ScriptValueDeserializerForModules.h", 11 "serialization/V8ScriptValueDeserializerForModules.h",
12 "serialization/V8ScriptValueSerializerForModules.cpp", 12 "serialization/V8ScriptValueSerializerForModules.cpp",
13 "serialization/V8ScriptValueSerializerForModules.h", 13 "serialization/V8ScriptValueSerializerForModules.h",
14 "ConditionalFeaturesForModules.cpp", 14 "ConditionalFeaturesForModules.cpp",
15 "ConditionalFeaturesForModules.h", 15 "ConditionalFeaturesForModules.h",
16 "DictionaryHelperForModules.cpp", 16 "DictionaryHelperForModules.cpp",
17 "ModuleBindingsInitializer.cpp", 17 "ModuleBindingsInitializer.cpp",
18 "ModuleBindingsInitializer.h", 18 "ModuleBindingsInitializer.h",
19 "SerializedScriptValueForModulesFactory.cpp", 19 "SerializedScriptValueForModulesFactory.cpp",
20 "SerializedScriptValueForModulesFactory.h", 20 "SerializedScriptValueForModulesFactory.h",
21 "ToV8ForModules.h", 21 "ToV8ForModules.h",
22 "V8BindingForModules.cpp", 22 "V8BindingForModules.cpp",
23 "V8BindingForModules.h", 23 "V8BindingForModules.h",
24 "V8ServiceWorkerMessageEventInternal.h", 24 "V8ServiceWorkerMessageEventInternal.h",
25 "wasm/WasmResponseExtensions.cpp",
26 "wasm/WasmResponseExtensions.h",
25 "WebGLAny.cpp", 27 "WebGLAny.cpp",
26 "WebGLAny.h", 28 "WebGLAny.h",
27 ], 29 ],
28 "abspath") + bindings_modules_v8_custom_files 30 "abspath") + bindings_modules_v8_custom_files
29 31
30 bindings_modules_v8_unittest_files = 32 bindings_modules_v8_unittest_files =
31 get_path_info([ 33 get_path_info([
32 "serialization/V8ScriptValueSerializerForModulesTest.cpp", 34 "serialization/V8ScriptValueSerializerForModulesTest.cpp",
33 "V8BindingForModulesTest.cpp", 35 "V8BindingForModulesTest.cpp",
34 ], 36 ],
35 "abspath") 37 "abspath")
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698