| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "core/v8/ScriptPromiseResolver.cpp", | 106 "core/v8/ScriptPromiseResolver.cpp", |
| 107 "core/v8/ScriptPromiseResolver.h", | 107 "core/v8/ScriptPromiseResolver.h", |
| 108 "core/v8/ScriptRegexp.cpp", | 108 "core/v8/ScriptRegexp.cpp", |
| 109 "core/v8/ScriptRegexp.h", | 109 "core/v8/ScriptRegexp.h", |
| 110 "core/v8/StringResource.cpp", | 110 "core/v8/StringResource.cpp", |
| 111 "core/v8/StringResource.h", | 111 "core/v8/StringResource.h", |
| 112 "core/v8/ScriptSourceCode.cpp", | 112 "core/v8/ScriptSourceCode.cpp", |
| 113 "core/v8/ScriptSourceCode.h", | 113 "core/v8/ScriptSourceCode.h", |
| 114 "core/v8/ScriptState.cpp", | 114 "core/v8/ScriptState.cpp", |
| 115 "core/v8/ScriptState.h", | 115 "core/v8/ScriptState.h", |
| 116 "core/v8/ScriptStreamer.cpp", | 116 "core/v8/ScriptStreamerImpl.cpp", |
| 117 "core/v8/ScriptStreamerImpl.h", |
| 117 "core/v8/ScriptStreamer.h", | 118 "core/v8/ScriptStreamer.h", |
| 118 "core/v8/ScriptStreamerThread.cpp", | 119 "core/v8/ScriptStreamerThread.cpp", |
| 119 "core/v8/ScriptStreamerThread.h", | 120 "core/v8/ScriptStreamerThread.h", |
| 120 "core/v8/ScriptString.cpp", | 121 "core/v8/ScriptString.cpp", |
| 121 "core/v8/ScriptString.h", | 122 "core/v8/ScriptString.h", |
| 122 "core/v8/ScriptValue.cpp", | 123 "core/v8/ScriptValue.cpp", |
| 123 "core/v8/ScriptValue.h", | 124 "core/v8/ScriptValue.h", |
| 124 "core/v8/ScriptWrappable.cpp", | 125 "core/v8/ScriptWrappable.cpp", |
| 125 "core/v8/ScriptWrappable.h", | 126 "core/v8/ScriptWrappable.h", |
| 126 "core/v8/ScriptWrappableVisitor.cpp", | 127 "core/v8/ScriptWrappableVisitor.cpp", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 "core/v8/TraceWrapperMemberTest.cpp", | 247 "core/v8/TraceWrapperMemberTest.cpp", |
| 247 "core/v8/V8BindingForTesting.cpp", | 248 "core/v8/V8BindingForTesting.cpp", |
| 248 "core/v8/V8BindingForTesting.h", | 249 "core/v8/V8BindingForTesting.h", |
| 249 "core/v8/V8BindingTest.cpp", | 250 "core/v8/V8BindingTest.cpp", |
| 250 "core/v8/V8ObjectBuilderTest.cpp", | 251 "core/v8/V8ObjectBuilderTest.cpp", |
| 251 "core/v8/V8ScriptRunnerTest.cpp", | 252 "core/v8/V8ScriptRunnerTest.cpp", |
| 252 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 253 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 253 ], | 254 ], |
| 254 "abspath") | 255 "abspath") |
| 255 bindings_unittest_files += bindings_modules_v8_unittest_files | 256 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |