| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 "core/v8/V8ValueCache.cpp", | 204 "core/v8/V8ValueCache.cpp", |
| 205 "core/v8/V8ValueCache.h", | 205 "core/v8/V8ValueCache.h", |
| 206 "core/v8/V8WorkerGlobalScopeEventListener.cpp", | 206 "core/v8/V8WorkerGlobalScopeEventListener.cpp", |
| 207 "core/v8/V8WorkerGlobalScopeEventListener.h", | 207 "core/v8/V8WorkerGlobalScopeEventListener.h", |
| 208 "core/v8/WindowProxy.cpp", | 208 "core/v8/WindowProxy.cpp", |
| 209 "core/v8/WindowProxy.h", | 209 "core/v8/WindowProxy.h", |
| 210 "core/v8/WindowProxyManager.cpp", | 210 "core/v8/WindowProxyManager.cpp", |
| 211 "core/v8/WindowProxyManager.h", | 211 "core/v8/WindowProxyManager.h", |
| 212 "core/v8/WorkerOrWorkletScriptController.cpp", | 212 "core/v8/WorkerOrWorkletScriptController.cpp", |
| 213 "core/v8/WorkerOrWorkletScriptController.h", | 213 "core/v8/WorkerOrWorkletScriptController.h", |
| 214 "core/v8/WorkerV8Settings.h", |
| 214 "core/v8/WrapperTypeInfo.cpp", | 215 "core/v8/WrapperTypeInfo.cpp", |
| 215 "core/v8/WrapperTypeInfo.h", | 216 "core/v8/WrapperTypeInfo.h", |
| 216 "core/v8/serialization/V8ScriptValueDeserializer.cpp", | 217 "core/v8/serialization/V8ScriptValueDeserializer.cpp", |
| 217 "core/v8/serialization/V8ScriptValueDeserializer.h", | 218 "core/v8/serialization/V8ScriptValueDeserializer.h", |
| 218 "core/v8/serialization/V8ScriptValueSerializer.cpp", | 219 "core/v8/serialization/V8ScriptValueSerializer.cpp", |
| 219 "core/v8/serialization/V8ScriptValueSerializer.h", | 220 "core/v8/serialization/V8ScriptValueSerializer.h", |
| 220 ], | 221 ], |
| 221 "abspath") | 222 "abspath") |
| 222 | 223 |
| 223 bindings_dir = get_path_info(".", "abspath") | 224 bindings_dir = get_path_info(".", "abspath") |
| (...skipping 16 matching lines...) Expand all Loading... |
| 240 "core/v8/TraceWrapperMemberTest.cpp", | 241 "core/v8/TraceWrapperMemberTest.cpp", |
| 241 "core/v8/V8BindingForTesting.cpp", | 242 "core/v8/V8BindingForTesting.cpp", |
| 242 "core/v8/V8BindingForTesting.h", | 243 "core/v8/V8BindingForTesting.h", |
| 243 "core/v8/V8BindingTest.cpp", | 244 "core/v8/V8BindingTest.cpp", |
| 244 "core/v8/V8ObjectBuilderTest.cpp", | 245 "core/v8/V8ObjectBuilderTest.cpp", |
| 245 "core/v8/V8ScriptRunnerTest.cpp", | 246 "core/v8/V8ScriptRunnerTest.cpp", |
| 246 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 247 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 247 ], | 248 ], |
| 248 "abspath") | 249 "abspath") |
| 249 bindings_unittest_files += bindings_modules_v8_unittest_files | 250 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |