| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "core/v8/V8ValueCache.h", | 207 "core/v8/V8ValueCache.h", |
| 208 "core/v8/V8WorkerGlobalScopeEventListener.cpp", | 208 "core/v8/V8WorkerGlobalScopeEventListener.cpp", |
| 209 "core/v8/V8WorkerGlobalScopeEventListener.h", | 209 "core/v8/V8WorkerGlobalScopeEventListener.h", |
| 210 "core/v8/WindowProxy.cpp", | 210 "core/v8/WindowProxy.cpp", |
| 211 "core/v8/WindowProxy.h", | 211 "core/v8/WindowProxy.h", |
| 212 "core/v8/WindowProxyManager.cpp", | 212 "core/v8/WindowProxyManager.cpp", |
| 213 "core/v8/WindowProxyManager.h", | 213 "core/v8/WindowProxyManager.h", |
| 214 "core/v8/WorkerOrWorkletScriptController.cpp", | 214 "core/v8/WorkerOrWorkletScriptController.cpp", |
| 215 "core/v8/WorkerOrWorkletScriptController.h", | 215 "core/v8/WorkerOrWorkletScriptController.h", |
| 216 "core/v8/WorkerV8Settings.h", | 216 "core/v8/WorkerV8Settings.h", |
| 217 "core/v8/WrapperCreationSecurityCheck.cpp", |
| 218 "core/v8/WrapperCreationSecurityCheck.h", |
| 217 "core/v8/WrapperTypeInfo.cpp", | 219 "core/v8/WrapperTypeInfo.cpp", |
| 218 "core/v8/WrapperTypeInfo.h", | 220 "core/v8/WrapperTypeInfo.h", |
| 219 "core/v8/serialization/V8ScriptValueDeserializer.cpp", | 221 "core/v8/serialization/V8ScriptValueDeserializer.cpp", |
| 220 "core/v8/serialization/V8ScriptValueDeserializer.h", | 222 "core/v8/serialization/V8ScriptValueDeserializer.h", |
| 221 "core/v8/serialization/V8ScriptValueSerializer.cpp", | 223 "core/v8/serialization/V8ScriptValueSerializer.cpp", |
| 222 "core/v8/serialization/V8ScriptValueSerializer.h", | 224 "core/v8/serialization/V8ScriptValueSerializer.h", |
| 223 ], | 225 ], |
| 224 "abspath") | 226 "abspath") |
| 225 | 227 |
| 226 bindings_dir = get_path_info(".", "abspath") | 228 bindings_dir = get_path_info(".", "abspath") |
| (...skipping 19 matching lines...) Expand all Loading... |
| 246 "core/v8/TraceWrapperMemberTest.cpp", | 248 "core/v8/TraceWrapperMemberTest.cpp", |
| 247 "core/v8/V8BindingForTesting.cpp", | 249 "core/v8/V8BindingForTesting.cpp", |
| 248 "core/v8/V8BindingForTesting.h", | 250 "core/v8/V8BindingForTesting.h", |
| 249 "core/v8/V8BindingTest.cpp", | 251 "core/v8/V8BindingTest.cpp", |
| 250 "core/v8/V8ObjectBuilderTest.cpp", | 252 "core/v8/V8ObjectBuilderTest.cpp", |
| 251 "core/v8/V8ScriptRunnerTest.cpp", | 253 "core/v8/V8ScriptRunnerTest.cpp", |
| 252 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 254 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 253 ], | 255 ], |
| 254 "abspath") | 256 "abspath") |
| 255 bindings_unittest_files += bindings_modules_v8_unittest_files | 257 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |