| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "core/v8/V8EventListener.cpp", | 158 "core/v8/V8EventListener.cpp", |
| 159 "core/v8/V8EventListener.h", | 159 "core/v8/V8EventListener.h", |
| 160 "core/v8/V8EventListenerInfo.h", | 160 "core/v8/V8EventListenerInfo.h", |
| 161 "core/v8/V8GCController.cpp", | 161 "core/v8/V8GCController.cpp", |
| 162 "core/v8/V8GCController.h", | 162 "core/v8/V8GCController.h", |
| 163 "core/v8/V8EventListenerHelper.cpp", | 163 "core/v8/V8EventListenerHelper.cpp", |
| 164 "core/v8/V8EventListenerHelper.h", | 164 "core/v8/V8EventListenerHelper.h", |
| 165 "core/v8/V8GCForContextDispose.cpp", | 165 "core/v8/V8GCForContextDispose.cpp", |
| 166 "core/v8/V8GCForContextDispose.h", | 166 "core/v8/V8GCForContextDispose.h", |
| 167 "core/v8/V8GlobalValueMap.h", | 167 "core/v8/V8GlobalValueMap.h", |
| 168 "core/v8/V8HiddenValue.cpp", | |
| 169 "core/v8/V8HiddenValue.h", | |
| 170 "core/v8/V8HTMLConstructor.cpp", | 168 "core/v8/V8HTMLConstructor.cpp", |
| 171 "core/v8/V8HTMLConstructor.h", | 169 "core/v8/V8HTMLConstructor.h", |
| 172 "core/v8/V8IdleTaskRunner.h", | 170 "core/v8/V8IdleTaskRunner.h", |
| 173 "core/v8/V8Initializer.cpp", | 171 "core/v8/V8Initializer.cpp", |
| 174 "core/v8/V8Initializer.h", | 172 "core/v8/V8Initializer.h", |
| 175 "core/v8/V8IntersectionObserverCallback.cpp", | 173 "core/v8/V8IntersectionObserverCallback.cpp", |
| 176 "core/v8/V8IntersectionObserverCallback.h", | 174 "core/v8/V8IntersectionObserverCallback.h", |
| 177 "core/v8/V8IteratorResultValue.cpp", | 175 "core/v8/V8IteratorResultValue.cpp", |
| 178 "core/v8/V8IteratorResultValue.h", | 176 "core/v8/V8IteratorResultValue.h", |
| 179 "core/v8/V8LazyEventListener.cpp", | 177 "core/v8/V8LazyEventListener.cpp", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 "core/v8/TraceWrapperMemberTest.cpp", | 245 "core/v8/TraceWrapperMemberTest.cpp", |
| 248 "core/v8/V8BindingForTesting.cpp", | 246 "core/v8/V8BindingForTesting.cpp", |
| 249 "core/v8/V8BindingForTesting.h", | 247 "core/v8/V8BindingForTesting.h", |
| 250 "core/v8/V8BindingTest.cpp", | 248 "core/v8/V8BindingTest.cpp", |
| 251 "core/v8/V8ObjectBuilderTest.cpp", | 249 "core/v8/V8ObjectBuilderTest.cpp", |
| 252 "core/v8/V8ScriptRunnerTest.cpp", | 250 "core/v8/V8ScriptRunnerTest.cpp", |
| 253 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 251 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 254 ], | 252 ], |
| 255 "abspath") | 253 "abspath") |
| 256 bindings_unittest_files += bindings_modules_v8_unittest_files | 254 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |