| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 "core/v8/V8NodeFilterCondition.cpp", | 148 "core/v8/V8NodeFilterCondition.cpp", |
| 149 "core/v8/V8NodeFilterCondition.h", | 149 "core/v8/V8NodeFilterCondition.h", |
| 150 "core/v8/V8ObjectBuilder.cpp", | 150 "core/v8/V8ObjectBuilder.cpp", |
| 151 "core/v8/V8ObjectBuilder.h", | 151 "core/v8/V8ObjectBuilder.h", |
| 152 "core/v8/V8PagePopupControllerBinding.cpp", | 152 "core/v8/V8PagePopupControllerBinding.cpp", |
| 153 "core/v8/V8PagePopupControllerBinding.h", | 153 "core/v8/V8PagePopupControllerBinding.h", |
| 154 "core/v8/V8PersistentValueVector.h", | 154 "core/v8/V8PersistentValueVector.h", |
| 155 "core/v8/V8ResizeObserverCallbackCustom.cpp", | 155 "core/v8/V8ResizeObserverCallbackCustom.cpp", |
| 156 "core/v8/V8ScriptRunner.cpp", | 156 "core/v8/V8ScriptRunner.cpp", |
| 157 "core/v8/V8ScriptRunner.h", | 157 "core/v8/V8ScriptRunner.h", |
| 158 "core/v8/V8SnapshotCreator.cpp", |
| 159 "core/v8/V8SnapshotCreator.h", |
| 158 "core/v8/V8StringResource.h", | 160 "core/v8/V8StringResource.h", |
| 159 "core/v8/V8V0CustomElementLifecycleCallbacks.cpp", | 161 "core/v8/V8V0CustomElementLifecycleCallbacks.cpp", |
| 160 "core/v8/V8V0CustomElementLifecycleCallbacks.h", | 162 "core/v8/V8V0CustomElementLifecycleCallbacks.h", |
| 161 "core/v8/V8WorkerGlobalScopeEventListener.cpp", | 163 "core/v8/V8WorkerGlobalScopeEventListener.cpp", |
| 162 "core/v8/V8WorkerGlobalScopeEventListener.h", | 164 "core/v8/V8WorkerGlobalScopeEventListener.h", |
| 163 "core/v8/WindowProxy.cpp", | 165 "core/v8/WindowProxy.cpp", |
| 164 "core/v8/WindowProxy.h", | 166 "core/v8/WindowProxy.h", |
| 165 "core/v8/WindowProxyManager.cpp", | 167 "core/v8/WindowProxyManager.cpp", |
| 166 "core/v8/WindowProxyManager.h", | 168 "core/v8/WindowProxyManager.h", |
| 167 "core/v8/WorkerOrWorkletScriptController.cpp", | 169 "core/v8/WorkerOrWorkletScriptController.cpp", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 "core/v8/V8BindingForTesting.cpp", | 205 "core/v8/V8BindingForTesting.cpp", |
| 204 "core/v8/V8BindingForTesting.h", | 206 "core/v8/V8BindingForTesting.h", |
| 205 "core/v8/V8BindingTest.cpp", | 207 "core/v8/V8BindingTest.cpp", |
| 206 "core/v8/V8ObjectBuilderTest.cpp", | 208 "core/v8/V8ObjectBuilderTest.cpp", |
| 207 "core/v8/V8ScriptRunnerTest.cpp", | 209 "core/v8/V8ScriptRunnerTest.cpp", |
| 208 "core/v8/serialization/SerializedScriptValueTest.cpp", | 210 "core/v8/serialization/SerializedScriptValueTest.cpp", |
| 209 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 211 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 210 ], | 212 ], |
| 211 "abspath") | 213 "abspath") |
| 212 bindings_unittest_files += bindings_modules_v8_unittest_files | 214 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |