| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "core/v8/ScriptPromiseProperty.h", | 89 "core/v8/ScriptPromiseProperty.h", |
| 90 "core/v8/ScriptPromisePropertyBase.cpp", | 90 "core/v8/ScriptPromisePropertyBase.cpp", |
| 91 "core/v8/ScriptPromisePropertyBase.h", | 91 "core/v8/ScriptPromisePropertyBase.h", |
| 92 "core/v8/ScriptPromiseResolver.cpp", | 92 "core/v8/ScriptPromiseResolver.cpp", |
| 93 "core/v8/ScriptPromiseResolver.h", | 93 "core/v8/ScriptPromiseResolver.h", |
| 94 "core/v8/ScriptRegexp.cpp", | 94 "core/v8/ScriptRegexp.cpp", |
| 95 "core/v8/ScriptRegexp.h", | 95 "core/v8/ScriptRegexp.h", |
| 96 "core/v8/StringResource.h", | 96 "core/v8/StringResource.h", |
| 97 "core/v8/ScriptSourceCode.cpp", | 97 "core/v8/ScriptSourceCode.cpp", |
| 98 "core/v8/ScriptSourceCode.h", | 98 "core/v8/ScriptSourceCode.h", |
| 99 "core/v8/ScriptState.h", | |
| 100 "core/v8/ScriptStreamer.cpp", | 99 "core/v8/ScriptStreamer.cpp", |
| 101 "core/v8/ScriptStreamer.h", | 100 "core/v8/ScriptStreamer.h", |
| 102 "core/v8/ScriptStreamerThread.cpp", | 101 "core/v8/ScriptStreamerThread.cpp", |
| 103 "core/v8/ScriptStreamerThread.h", | 102 "core/v8/ScriptStreamerThread.h", |
| 104 "core/v8/ScriptString.cpp", | 103 "core/v8/ScriptString.cpp", |
| 105 "core/v8/ScriptString.h", | 104 "core/v8/ScriptString.h", |
| 106 "core/v8/ScriptValue.cpp", | 105 "core/v8/ScriptValue.cpp", |
| 107 "core/v8/ScriptValue.h", | 106 "core/v8/ScriptValue.h", |
| 108 "core/v8/ScriptWrappable.h", | |
| 109 "core/v8/ScriptWrappableVisitor.h", | 107 "core/v8/ScriptWrappableVisitor.h", |
| 110 "core/v8/ScriptWrappableVisitorVerifier.h", | 108 "core/v8/ScriptWrappableVisitorVerifier.h", |
| 111 "core/v8/SerializationTag.h", | 109 "core/v8/SerializationTag.h", |
| 112 "core/v8/SerializedScriptValue.cpp", | 110 "core/v8/SerializedScriptValue.cpp", |
| 113 "core/v8/SerializedScriptValue.h", | 111 "core/v8/SerializedScriptValue.h", |
| 114 "core/v8/SerializedScriptValueFactory.cpp", | 112 "core/v8/SerializedScriptValueFactory.cpp", |
| 115 "core/v8/SerializedScriptValueFactory.h", | 113 "core/v8/SerializedScriptValueFactory.h", |
| 116 "core/v8/SharedPersistent.h", | 114 "core/v8/SharedPersistent.h", |
| 117 "core/v8/SourceLocation.cpp", | 115 "core/v8/SourceLocation.cpp", |
| 118 "core/v8/SourceLocation.h", | 116 "core/v8/SourceLocation.h", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 "core/v8/TraceWrapperMemberTest.cpp", | 222 "core/v8/TraceWrapperMemberTest.cpp", |
| 225 "core/v8/V8BindingForTesting.cpp", | 223 "core/v8/V8BindingForTesting.cpp", |
| 226 "core/v8/V8BindingForTesting.h", | 224 "core/v8/V8BindingForTesting.h", |
| 227 "core/v8/V8BindingTest.cpp", | 225 "core/v8/V8BindingTest.cpp", |
| 228 "core/v8/V8ObjectBuilderTest.cpp", | 226 "core/v8/V8ObjectBuilderTest.cpp", |
| 229 "core/v8/V8ScriptRunnerTest.cpp", | 227 "core/v8/V8ScriptRunnerTest.cpp", |
| 230 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 228 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 231 ], | 229 ], |
| 232 "abspath") | 230 "abspath") |
| 233 bindings_unittest_files += bindings_modules_v8_unittest_files | 231 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |