| 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 "ScriptValueSerializerForModules.cpp", | 19 "ScriptValueSerializerForModules.cpp", |
| 20 "ScriptValueSerializerForModules.h", | 20 "ScriptValueSerializerForModules.h", |
| 21 "SerializedScriptValueForModulesFactory.cpp", | 21 "SerializedScriptValueForModulesFactory.cpp", |
| 22 "SerializedScriptValueForModulesFactory.h", | 22 "SerializedScriptValueForModulesFactory.h", |
| 23 "ToV8ForModules.h", | 23 "ToV8ForModules.h", |
| 24 "V8BindingForModules.cpp", | 24 "V8BindingForModules.cpp", |
| 25 "V8BindingForModules.h", | 25 "V8BindingForModules.h", |
| 26 "V8IDBObserverCallback.cpp", | |
| 27 "V8IDBObserverCallback.h", | |
| 28 "V8ServiceWorkerMessageEventInternal.h", | 26 "V8ServiceWorkerMessageEventInternal.h", |
| 29 "WebGLAny.cpp", | 27 "WebGLAny.cpp", |
| 30 "WebGLAny.h", | 28 "WebGLAny.h", |
| 31 ], | 29 ], |
| 32 "abspath") + bindings_modules_v8_custom_files | 30 "abspath") + bindings_modules_v8_custom_files |
| 33 | 31 |
| 34 bindings_modules_v8_unittest_files = | 32 bindings_modules_v8_unittest_files = |
| 35 get_path_info([ | 33 get_path_info([ |
| 36 "serialization/V8ScriptValueSerializerForModulesTest.cpp", | 34 "serialization/V8ScriptValueSerializerForModulesTest.cpp", |
| 37 "V8BindingForModulesTest.cpp", | 35 "V8BindingForModulesTest.cpp", |
| 38 ], | 36 ], |
| 39 "abspath") | 37 "abspath") |
| OLD | NEW |