| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "core/v8/ScriptWrappableVisitorVerifier.h", | 124 "core/v8/ScriptWrappableVisitorVerifier.h", |
| 125 "core/v8/SerializationTag.h", | 125 "core/v8/SerializationTag.h", |
| 126 "core/v8/SerializedScriptValue.cpp", | 126 "core/v8/SerializedScriptValue.cpp", |
| 127 "core/v8/SerializedScriptValue.h", | 127 "core/v8/SerializedScriptValue.h", |
| 128 "core/v8/SerializedScriptValueFactory.cpp", | 128 "core/v8/SerializedScriptValueFactory.cpp", |
| 129 "core/v8/SerializedScriptValueFactory.h", | 129 "core/v8/SerializedScriptValueFactory.h", |
| 130 "core/v8/SharedPersistent.h", | 130 "core/v8/SharedPersistent.h", |
| 131 "core/v8/SourceLocation.cpp", | 131 "core/v8/SourceLocation.cpp", |
| 132 "core/v8/SourceLocation.h", | 132 "core/v8/SourceLocation.h", |
| 133 "core/v8/TraceWrapperMember.h", | 133 "core/v8/TraceWrapperMember.h", |
| 134 "core/v8/TraceWrapperV8Reference.h", |
| 134 "core/v8/Transferables.h", | 135 "core/v8/Transferables.h", |
| 135 "core/v8/ToV8.cpp", | 136 "core/v8/ToV8.cpp", |
| 136 "core/v8/ToV8.h", | 137 "core/v8/ToV8.h", |
| 137 "core/v8/V8AbstractEventListener.cpp", | 138 "core/v8/V8AbstractEventListener.cpp", |
| 138 "core/v8/V8AbstractEventListener.h", | 139 "core/v8/V8AbstractEventListener.h", |
| 139 "core/v8/V8Binding.cpp", | 140 "core/v8/V8Binding.cpp", |
| 140 "core/v8/V8Binding.h", | 141 "core/v8/V8Binding.h", |
| 141 "core/v8/V8BindingMacros.h", | 142 "core/v8/V8BindingMacros.h", |
| 142 "core/v8/V8CacheOptions.h", | 143 "core/v8/V8CacheOptions.h", |
| 143 "core/v8/V8CacheStrategiesForCacheStorage.h", | 144 "core/v8/V8CacheStrategiesForCacheStorage.h", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 "core/v8/ToV8Test.cpp", | 236 "core/v8/ToV8Test.cpp", |
| 236 "core/v8/TraceWrapperMemberTest.cpp", | 237 "core/v8/TraceWrapperMemberTest.cpp", |
| 237 "core/v8/V8BindingForTesting.cpp", | 238 "core/v8/V8BindingForTesting.cpp", |
| 238 "core/v8/V8BindingForTesting.h", | 239 "core/v8/V8BindingForTesting.h", |
| 239 "core/v8/V8BindingTest.cpp", | 240 "core/v8/V8BindingTest.cpp", |
| 240 "core/v8/V8ScriptRunnerTest.cpp", | 241 "core/v8/V8ScriptRunnerTest.cpp", |
| 241 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 242 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 242 ], | 243 ], |
| 243 "abspath") | 244 "abspath") |
| 244 bindings_unittest_files += bindings_modules_v8_unittest_files | 245 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |