| 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 = |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "core/v8/GeneratedCodeHelper.cpp", | 63 "core/v8/GeneratedCodeHelper.cpp", |
| 64 "core/v8/GeneratedCodeHelper.h", | 64 "core/v8/GeneratedCodeHelper.h", |
| 65 "core/v8/IDLDictionaryBase.cpp", | 65 "core/v8/IDLDictionaryBase.cpp", |
| 66 "core/v8/IDLDictionaryBase.h", | 66 "core/v8/IDLDictionaryBase.h", |
| 67 "core/v8/IDLTypes.h", | 67 "core/v8/IDLTypes.h", |
| 68 "core/v8/IDLTypesBase.h", | 68 "core/v8/IDLTypesBase.h", |
| 69 "core/v8/Iterable.h", | 69 "core/v8/Iterable.h", |
| 70 "core/v8/LocalWindowProxy.cpp", | 70 "core/v8/LocalWindowProxy.cpp", |
| 71 "core/v8/LocalWindowProxy.h", | 71 "core/v8/LocalWindowProxy.h", |
| 72 "core/v8/Maplike.h", | 72 "core/v8/Maplike.h", |
| 73 "core/v8/Microtask.cpp", | |
| 74 "core/v8/Microtask.h", | 73 "core/v8/Microtask.h", |
| 75 "core/v8/NativeValueTraits.h", | 74 "core/v8/NativeValueTraits.h", |
| 76 "core/v8/NativeValueTraitsImpl.h", | 75 "core/v8/NativeValueTraitsImpl.h", |
| 77 "core/v8/Nullable.h", | 76 "core/v8/Nullable.h", |
| 78 "core/v8/RejectedPromises.cpp", | 77 "core/v8/RejectedPromises.cpp", |
| 79 "core/v8/RejectedPromises.h", | 78 "core/v8/RejectedPromises.h", |
| 80 "core/v8/RemoteWindowProxy.cpp", | 79 "core/v8/RemoteWindowProxy.cpp", |
| 81 "core/v8/RemoteWindowProxy.h", | 80 "core/v8/RemoteWindowProxy.h", |
| 82 "core/v8/RetainedDOMInfo.cpp", | 81 "core/v8/RetainedDOMInfo.cpp", |
| 83 "core/v8/RetainedDOMInfo.h", | 82 "core/v8/RetainedDOMInfo.h", |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 "core/v8/TraceWrapperMemberTest.cpp", | 251 "core/v8/TraceWrapperMemberTest.cpp", |
| 253 "core/v8/V8BindingForTesting.cpp", | 252 "core/v8/V8BindingForTesting.cpp", |
| 254 "core/v8/V8BindingForTesting.h", | 253 "core/v8/V8BindingForTesting.h", |
| 255 "core/v8/V8BindingTest.cpp", | 254 "core/v8/V8BindingTest.cpp", |
| 256 "core/v8/V8ObjectBuilderTest.cpp", | 255 "core/v8/V8ObjectBuilderTest.cpp", |
| 257 "core/v8/V8ScriptRunnerTest.cpp", | 256 "core/v8/V8ScriptRunnerTest.cpp", |
| 258 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 257 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 259 ], | 258 ], |
| 260 "abspath") | 259 "abspath") |
| 261 bindings_unittest_files += bindings_modules_v8_unittest_files | 260 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |