| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 "core/v8/V8ObjectConstructor.h", | 180 "core/v8/V8ObjectConstructor.h", |
| 181 "core/v8/V8PagePopupControllerBinding.cpp", | 181 "core/v8/V8PagePopupControllerBinding.cpp", |
| 182 "core/v8/V8PagePopupControllerBinding.h", | 182 "core/v8/V8PagePopupControllerBinding.h", |
| 183 "core/v8/V8PerContextData.h", | 183 "core/v8/V8PerContextData.h", |
| 184 "core/v8/V8PerIsolateData.h", | 184 "core/v8/V8PerIsolateData.h", |
| 185 "core/v8/V8PersistentValueVector.h", | 185 "core/v8/V8PersistentValueVector.h", |
| 186 "core/v8/V8PrivateProperty.h", | 186 "core/v8/V8PrivateProperty.h", |
| 187 "core/v8/V8ResizeObserverCallbackCustom.cpp", | 187 "core/v8/V8ResizeObserverCallbackCustom.cpp", |
| 188 "core/v8/V8ScriptRunner.cpp", | 188 "core/v8/V8ScriptRunner.cpp", |
| 189 "core/v8/V8ScriptRunner.h", | 189 "core/v8/V8ScriptRunner.h", |
| 190 "core/v8/V8SnapshotCreator.cpp", |
| 191 "core/v8/V8SnapshotCreator.h", |
| 190 "core/v8/V8StringResource.h", | 192 "core/v8/V8StringResource.h", |
| 191 "core/v8/V8ThrowException.h", | 193 "core/v8/V8ThrowException.h", |
| 192 "core/v8/V8V0CustomElementLifecycleCallbacks.cpp", | 194 "core/v8/V8V0CustomElementLifecycleCallbacks.cpp", |
| 193 "core/v8/V8V0CustomElementLifecycleCallbacks.h", | 195 "core/v8/V8V0CustomElementLifecycleCallbacks.h", |
| 194 "core/v8/V8ValueCache.h", | 196 "core/v8/V8ValueCache.h", |
| 195 "core/v8/V8WorkerGlobalScopeEventListener.cpp", | 197 "core/v8/V8WorkerGlobalScopeEventListener.cpp", |
| 196 "core/v8/V8WorkerGlobalScopeEventListener.h", | 198 "core/v8/V8WorkerGlobalScopeEventListener.h", |
| 197 "core/v8/WindowProxy.cpp", | 199 "core/v8/WindowProxy.cpp", |
| 198 "core/v8/WindowProxy.h", | 200 "core/v8/WindowProxy.h", |
| 199 "core/v8/WindowProxyManager.cpp", | 201 "core/v8/WindowProxyManager.cpp", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 "core/v8/TraceWrapperMemberTest.cpp", | 235 "core/v8/TraceWrapperMemberTest.cpp", |
| 234 "core/v8/V8BindingForTesting.cpp", | 236 "core/v8/V8BindingForTesting.cpp", |
| 235 "core/v8/V8BindingForTesting.h", | 237 "core/v8/V8BindingForTesting.h", |
| 236 "core/v8/V8BindingTest.cpp", | 238 "core/v8/V8BindingTest.cpp", |
| 237 "core/v8/V8ObjectBuilderTest.cpp", | 239 "core/v8/V8ObjectBuilderTest.cpp", |
| 238 "core/v8/V8ScriptRunnerTest.cpp", | 240 "core/v8/V8ScriptRunnerTest.cpp", |
| 239 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 241 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 240 ], | 242 ], |
| 241 "abspath") | 243 "abspath") |
| 242 bindings_unittest_files += bindings_modules_v8_unittest_files | 244 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |