| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 "core/v8/SourceLocation.h", | 136 "core/v8/SourceLocation.h", |
| 137 "core/v8/TraceWrapperMember.h", | 137 "core/v8/TraceWrapperMember.h", |
| 138 "core/v8/TraceWrapperV8Reference.h", | 138 "core/v8/TraceWrapperV8Reference.h", |
| 139 "core/v8/Transferables.h", | 139 "core/v8/Transferables.h", |
| 140 "core/v8/ToV8.h", | 140 "core/v8/ToV8.h", |
| 141 "core/v8/ToV8ForCore.h", | 141 "core/v8/ToV8ForCore.h", |
| 142 "core/v8/UseCounterCallback.cpp", | 142 "core/v8/UseCounterCallback.cpp", |
| 143 "core/v8/UseCounterCallback.h", | 143 "core/v8/UseCounterCallback.h", |
| 144 "core/v8/V8AbstractEventListener.cpp", | 144 "core/v8/V8AbstractEventListener.cpp", |
| 145 "core/v8/V8AbstractEventListener.h", | 145 "core/v8/V8AbstractEventListener.h", |
| 146 "core/v8/V8Binding.h", |
| 146 "core/v8/V8Binding.cpp", | 147 "core/v8/V8Binding.cpp", |
| 147 "core/v8/V8Binding.h", | 148 "core/v8/V8BindingForCore.cpp", |
| 149 "core/v8/V8BindingForCore.h", |
| 148 "core/v8/V8BindingMacros.h", | 150 "core/v8/V8BindingMacros.h", |
| 149 "core/v8/V8CacheOptions.h", | 151 "core/v8/V8CacheOptions.h", |
| 150 "core/v8/V8CacheStrategiesForCacheStorage.h", | 152 "core/v8/V8CacheStrategiesForCacheStorage.h", |
| 151 "core/v8/V8CrossOriginSetterInfo.h", | 153 "core/v8/V8CrossOriginSetterInfo.h", |
| 152 "core/v8/V8DOMActivityLogger.cpp", | 154 "core/v8/V8DOMActivityLogger.cpp", |
| 153 "core/v8/V8DOMActivityLogger.h", | 155 "core/v8/V8DOMActivityLogger.h", |
| 154 "core/v8/V8DOMConfiguration.cpp", | 156 "core/v8/V8DOMConfiguration.cpp", |
| 155 "core/v8/V8DOMConfiguration.h", | 157 "core/v8/V8DOMConfiguration.h", |
| 156 "core/v8/V8ThrowDOMException.cpp", | 158 "core/v8/V8ThrowDOMException.cpp", |
| 157 "core/v8/V8ThrowDOMException.h", | 159 "core/v8/V8ThrowDOMException.h", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 "core/v8/TraceWrapperMemberTest.cpp", | 252 "core/v8/TraceWrapperMemberTest.cpp", |
| 251 "core/v8/V8BindingForTesting.cpp", | 253 "core/v8/V8BindingForTesting.cpp", |
| 252 "core/v8/V8BindingForTesting.h", | 254 "core/v8/V8BindingForTesting.h", |
| 253 "core/v8/V8BindingTest.cpp", | 255 "core/v8/V8BindingTest.cpp", |
| 254 "core/v8/V8ObjectBuilderTest.cpp", | 256 "core/v8/V8ObjectBuilderTest.cpp", |
| 255 "core/v8/V8ScriptRunnerTest.cpp", | 257 "core/v8/V8ScriptRunnerTest.cpp", |
| 256 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 258 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 257 ], | 259 ], |
| 258 "abspath") | 260 "abspath") |
| 259 bindings_unittest_files += bindings_modules_v8_unittest_files | 261 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |