| OLD | NEW |
| 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", | |
| 25 "wasm/WasmResponseExtensions.cpp", | 24 "wasm/WasmResponseExtensions.cpp", |
| 26 "wasm/WasmResponseExtensions.h", | 25 "wasm/WasmResponseExtensions.h", |
| 27 "WebGLAny.cpp", | 26 "WebGLAny.cpp", |
| 28 "WebGLAny.h", | 27 "WebGLAny.h", |
| 29 ], | 28 ], |
| 30 "abspath") + bindings_modules_v8_custom_files | 29 "abspath") + bindings_modules_v8_custom_files |
| 31 | 30 |
| 32 bindings_modules_v8_unittest_files = | 31 bindings_modules_v8_unittest_files = |
| 33 get_path_info([ | 32 get_path_info([ |
| 34 "serialization/V8ScriptValueSerializerForModulesTest.cpp", | 33 "serialization/V8ScriptValueSerializerForModulesTest.cpp", |
| 35 "V8BindingForModulesTest.cpp", | 34 "V8BindingForModulesTest.cpp", |
| 36 ], | 35 ], |
| 37 "abspath") | 36 "abspath") |
| OLD | NEW |