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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 "core/v8/V8PagePopupControllerBinding.h", | 182 "core/v8/V8PagePopupControllerBinding.h", |
183 "core/v8/V8PerContextData.cpp", | 183 "core/v8/V8PerContextData.cpp", |
184 "core/v8/V8PerContextData.h", | 184 "core/v8/V8PerContextData.h", |
185 "core/v8/V8PerformanceObserverCallback.cpp", | 185 "core/v8/V8PerformanceObserverCallback.cpp", |
186 "core/v8/V8PerformanceObserverCallback.h", | 186 "core/v8/V8PerformanceObserverCallback.h", |
187 "core/v8/V8PerIsolateData.cpp", | 187 "core/v8/V8PerIsolateData.cpp", |
188 "core/v8/V8PerIsolateData.h", | 188 "core/v8/V8PerIsolateData.h", |
189 "core/v8/V8PersistentValueVector.h", | 189 "core/v8/V8PersistentValueVector.h", |
190 "core/v8/V8PrivateProperty.cpp", | 190 "core/v8/V8PrivateProperty.cpp", |
191 "core/v8/V8PrivateProperty.h", | 191 "core/v8/V8PrivateProperty.h", |
| 192 "core/v8/V8ResizeObserverCallbackCustom.cpp", |
192 "core/v8/V8ScriptRunner.cpp", | 193 "core/v8/V8ScriptRunner.cpp", |
193 "core/v8/V8ScriptRunner.h", | 194 "core/v8/V8ScriptRunner.h", |
194 "core/v8/V8StringResource.cpp", | 195 "core/v8/V8StringResource.cpp", |
195 "core/v8/V8StringResource.h", | 196 "core/v8/V8StringResource.h", |
196 "core/v8/V8ThrowException.cpp", | 197 "core/v8/V8ThrowException.cpp", |
197 "core/v8/V8ThrowException.h", | 198 "core/v8/V8ThrowException.h", |
198 "core/v8/V8V0CustomElementLifecycleCallbacks.cpp", | 199 "core/v8/V8V0CustomElementLifecycleCallbacks.cpp", |
199 "core/v8/V8V0CustomElementLifecycleCallbacks.h", | 200 "core/v8/V8V0CustomElementLifecycleCallbacks.h", |
200 "core/v8/V8ValueCache.cpp", | 201 "core/v8/V8ValueCache.cpp", |
201 "core/v8/V8ValueCache.h", | 202 "core/v8/V8ValueCache.h", |
(...skipping 29 matching lines...) Expand all Loading... |
231 "core/v8/ScriptValueSerializerTest.cpp", | 232 "core/v8/ScriptValueSerializerTest.cpp", |
232 "core/v8/SerializedScriptValueTest.cpp", | 233 "core/v8/SerializedScriptValueTest.cpp", |
233 "core/v8/ToV8Test.cpp", | 234 "core/v8/ToV8Test.cpp", |
234 "core/v8/V8BindingForTesting.cpp", | 235 "core/v8/V8BindingForTesting.cpp", |
235 "core/v8/V8BindingForTesting.h", | 236 "core/v8/V8BindingForTesting.h", |
236 "core/v8/V8BindingTest.cpp", | 237 "core/v8/V8BindingTest.cpp", |
237 "core/v8/V8ScriptRunnerTest.cpp", | 238 "core/v8/V8ScriptRunnerTest.cpp", |
238 ], | 239 ], |
239 "abspath") | 240 "abspath") |
240 bindings_unittest_files += bindings_modules_v8_unittest_files | 241 bindings_unittest_files += bindings_modules_v8_unittest_files |
OLD | NEW |