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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "core/v8/DictionaryIterator.h", | 58 "core/v8/DictionaryIterator.h", |
59 "core/v8/ExceptionMessages.cpp", | 59 "core/v8/ExceptionMessages.cpp", |
60 "core/v8/ExceptionMessages.h", | 60 "core/v8/ExceptionMessages.h", |
61 "core/v8/ExceptionState.cpp", | 61 "core/v8/ExceptionState.cpp", |
62 "core/v8/ExceptionState.h", | 62 "core/v8/ExceptionState.h", |
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/Iterable.h", | 67 "core/v8/Iterable.h", |
| 68 "core/v8/LocalWindowProxy.cpp", |
| 69 "core/v8/LocalWindowProxy.h", |
68 "core/v8/Maplike.h", | 70 "core/v8/Maplike.h", |
69 "core/v8/Microtask.cpp", | 71 "core/v8/Microtask.cpp", |
70 "core/v8/Microtask.h", | 72 "core/v8/Microtask.h", |
71 "core/v8/NativeValueTraits.h", | 73 "core/v8/NativeValueTraits.h", |
72 "core/v8/Nullable.h", | 74 "core/v8/Nullable.h", |
73 "core/v8/RejectedPromises.cpp", | 75 "core/v8/RejectedPromises.cpp", |
74 "core/v8/RejectedPromises.h", | 76 "core/v8/RejectedPromises.h", |
| 77 "core/v8/RemoteWindowProxy.cpp", |
| 78 "core/v8/RemoteWindowProxy.h", |
75 "core/v8/RetainedDOMInfo.cpp", | 79 "core/v8/RetainedDOMInfo.cpp", |
76 "core/v8/RetainedDOMInfo.h", | 80 "core/v8/RetainedDOMInfo.h", |
77 "core/v8/RetainedObjectInfo.h", | 81 "core/v8/RetainedObjectInfo.h", |
78 "core/v8/ScheduledAction.cpp", | 82 "core/v8/ScheduledAction.cpp", |
79 "core/v8/ScheduledAction.h", | 83 "core/v8/ScheduledAction.h", |
80 "core/v8/ScopedPersistent.h", | 84 "core/v8/ScopedPersistent.h", |
81 "core/v8/ScriptController.cpp", | 85 "core/v8/ScriptController.cpp", |
82 "core/v8/ScriptController.h", | 86 "core/v8/ScriptController.h", |
83 "core/v8/ScriptCustomElementDefinition.cpp", | 87 "core/v8/ScriptCustomElementDefinition.cpp", |
84 "core/v8/ScriptCustomElementDefinition.h", | 88 "core/v8/ScriptCustomElementDefinition.h", |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 "core/v8/TraceWrapperMemberTest.cpp", | 238 "core/v8/TraceWrapperMemberTest.cpp", |
235 "core/v8/V8BindingForTesting.cpp", | 239 "core/v8/V8BindingForTesting.cpp", |
236 "core/v8/V8BindingForTesting.h", | 240 "core/v8/V8BindingForTesting.h", |
237 "core/v8/V8BindingTest.cpp", | 241 "core/v8/V8BindingTest.cpp", |
238 "core/v8/V8ObjectBuilderTest.cpp", | 242 "core/v8/V8ObjectBuilderTest.cpp", |
239 "core/v8/V8ScriptRunnerTest.cpp", | 243 "core/v8/V8ScriptRunnerTest.cpp", |
240 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 244 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
241 ], | 245 ], |
242 "abspath") | 246 "abspath") |
243 bindings_unittest_files += bindings_modules_v8_unittest_files | 247 bindings_unittest_files += bindings_modules_v8_unittest_files |
OLD | NEW |