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

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

Issue 2260113002: Lazily install origin trial features on V8 objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase after parent CL landed Created 4 years, 2 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",
15 "ConditionalFeaturesForModules.h",
14 "DictionaryHelperForModules.cpp", 16 "DictionaryHelperForModules.cpp",
15 "ModuleBindingsInitializer.cpp", 17 "ModuleBindingsInitializer.cpp",
16 "ModuleBindingsInitializer.h", 18 "ModuleBindingsInitializer.h",
17 "ScriptValueSerializerForModules.cpp", 19 "ScriptValueSerializerForModules.cpp",
18 "ScriptValueSerializerForModules.h", 20 "ScriptValueSerializerForModules.h",
19 "SerializedScriptValueForModulesFactory.cpp", 21 "SerializedScriptValueForModulesFactory.cpp",
20 "SerializedScriptValueForModulesFactory.h", 22 "SerializedScriptValueForModulesFactory.h",
21 "ToV8ForModules.h", 23 "ToV8ForModules.h",
22 "V8BindingForModules.cpp", 24 "V8BindingForModules.cpp",
23 "V8BindingForModules.h", 25 "V8BindingForModules.h",
24 "V8IDBObserverCallback.cpp", 26 "V8IDBObserverCallback.cpp",
25 "V8IDBObserverCallback.h", 27 "V8IDBObserverCallback.h",
26 "V8ServiceWorkerMessageEventInternal.h", 28 "V8ServiceWorkerMessageEventInternal.h",
27 "WebGLAny.cpp", 29 "WebGLAny.cpp",
28 "WebGLAny.h", 30 "WebGLAny.h",
29 ], 31 ],
30 "abspath") + bindings_modules_v8_custom_files 32 "abspath") + bindings_modules_v8_custom_files
31 33
32 bindings_modules_v8_unittest_files = 34 bindings_modules_v8_unittest_files =
33 get_path_info([ 35 get_path_info([
34 "serialization/V8ScriptValueSerializerForModulesTest.cpp", 36 "serialization/V8ScriptValueSerializerForModulesTest.cpp",
35 "V8BindingForModulesTest.cpp", 37 "V8BindingForModulesTest.cpp",
36 ], 38 ],
37 "abspath") 39 "abspath")
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698