| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 "core/v8/V8WorkerGlobalScopeEventListener.h", | 210 "core/v8/V8WorkerGlobalScopeEventListener.h", |
| 211 "core/v8/WindowProxy.cpp", | 211 "core/v8/WindowProxy.cpp", |
| 212 "core/v8/WindowProxy.h", | 212 "core/v8/WindowProxy.h", |
| 213 "core/v8/WindowProxyManager.cpp", | 213 "core/v8/WindowProxyManager.cpp", |
| 214 "core/v8/WindowProxyManager.h", | 214 "core/v8/WindowProxyManager.h", |
| 215 "core/v8/WorkerOrWorkletScriptController.cpp", | 215 "core/v8/WorkerOrWorkletScriptController.cpp", |
| 216 "core/v8/WorkerOrWorkletScriptController.h", | 216 "core/v8/WorkerOrWorkletScriptController.h", |
| 217 "core/v8/WorkerV8Settings.h", | 217 "core/v8/WorkerV8Settings.h", |
| 218 "core/v8/WrapperTypeInfo.cpp", | 218 "core/v8/WrapperTypeInfo.cpp", |
| 219 "core/v8/WrapperTypeInfo.h", | 219 "core/v8/WrapperTypeInfo.h", |
| 220 "core/v8/serialization/LongStringCollection.cpp", |
| 221 "core/v8/serialization/LongStringCollection.h", |
| 220 "core/v8/serialization/V8ScriptValueDeserializer.cpp", | 222 "core/v8/serialization/V8ScriptValueDeserializer.cpp", |
| 221 "core/v8/serialization/V8ScriptValueDeserializer.h", | 223 "core/v8/serialization/V8ScriptValueDeserializer.h", |
| 222 "core/v8/serialization/V8ScriptValueSerializer.cpp", | 224 "core/v8/serialization/V8ScriptValueSerializer.cpp", |
| 223 "core/v8/serialization/V8ScriptValueSerializer.h", | 225 "core/v8/serialization/V8ScriptValueSerializer.h", |
| 224 ], | 226 ], |
| 225 "abspath") | 227 "abspath") |
| 226 | 228 |
| 227 bindings_dir = get_path_info(".", "abspath") | 229 bindings_dir = get_path_info(".", "abspath") |
| 228 blink_output_dir = "$root_gen_dir/blink" | 230 blink_output_dir = "$root_gen_dir/blink" |
| 229 bindings_output_dir = "$root_gen_dir/blink/bindings" | 231 bindings_output_dir = "$root_gen_dir/blink/bindings" |
| (...skipping 16 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 |