| 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 # All paths in this file should be absolute so it can be imported into | 5 # All paths in this file should be absolute so it can be imported into |
| 6 # different contexts. | 6 # different contexts. |
| 7 | 7 |
| 8 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") |
| 9 | 9 |
| 10 bindings_core_v8_files = | 10 bindings_core_v8_files = |
| 11 get_path_info([ | 11 get_path_info([ |
| 12 "core/v8/custom/V8CSSStyleDeclarationCustom.cpp", | 12 "core/v8/custom/V8CSSStyleDeclarationCustom.cpp", |
| 13 "core/v8/custom/V8CustomEventCustom.cpp", | 13 "core/v8/custom/V8CustomEventCustom.cpp", |
| 14 "core/v8/custom/V8CustomXPathNSResolver.cpp", | 14 "core/v8/custom/V8CustomXPathNSResolver.cpp", |
| 15 "core/v8/custom/V8CustomXPathNSResolver.h", | 15 "core/v8/custom/V8CustomXPathNSResolver.h", |
| 16 "core/v8/custom/V8DevToolsHostCustom.cpp", | 16 "core/v8/custom/V8DevToolsHostCustom.cpp", |
| 17 "core/v8/custom/V8DOMMatrixReadOnlyCustom.cpp", |
| 17 "core/v8/custom/V8DocumentCustom.cpp", | 18 "core/v8/custom/V8DocumentCustom.cpp", |
| 18 "core/v8/custom/V8ErrorEventCustom.cpp", | 19 "core/v8/custom/V8ErrorEventCustom.cpp", |
| 19 "core/v8/custom/V8EventTargetCustom.cpp", | 20 "core/v8/custom/V8EventTargetCustom.cpp", |
| 20 "core/v8/custom/V8HTMLAllCollectionCustom.cpp", | 21 "core/v8/custom/V8HTMLAllCollectionCustom.cpp", |
| 21 "core/v8/custom/V8HTMLPlugInElementCustom.cpp", | 22 "core/v8/custom/V8HTMLPlugInElementCustom.cpp", |
| 22 "core/v8/custom/V8IntersectionObserverCustom.cpp", | 23 "core/v8/custom/V8IntersectionObserverCustom.cpp", |
| 23 "core/v8/custom/V8MediaQueryListCustom.cpp", | 24 "core/v8/custom/V8MediaQueryListCustom.cpp", |
| 24 "core/v8/custom/V8MessageChannelCustom.cpp", | 25 "core/v8/custom/V8MessageChannelCustom.cpp", |
| 25 "core/v8/custom/V8MessageEventCustom.cpp", | 26 "core/v8/custom/V8MessageEventCustom.cpp", |
| 26 "core/v8/custom/V8MutationObserverCustom.cpp", | 27 "core/v8/custom/V8MutationObserverCustom.cpp", |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 "core/v8/TraceWrapperMemberTest.cpp", | 246 "core/v8/TraceWrapperMemberTest.cpp", |
| 246 "core/v8/V8BindingForTesting.cpp", | 247 "core/v8/V8BindingForTesting.cpp", |
| 247 "core/v8/V8BindingForTesting.h", | 248 "core/v8/V8BindingForTesting.h", |
| 248 "core/v8/V8BindingTest.cpp", | 249 "core/v8/V8BindingTest.cpp", |
| 249 "core/v8/V8ObjectBuilderTest.cpp", | 250 "core/v8/V8ObjectBuilderTest.cpp", |
| 250 "core/v8/V8ScriptRunnerTest.cpp", | 251 "core/v8/V8ScriptRunnerTest.cpp", |
| 251 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 252 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 252 ], | 253 ], |
| 253 "abspath") | 254 "abspath") |
| 254 bindings_unittest_files += bindings_modules_v8_unittest_files | 255 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |