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