| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "core/v8/ScriptController.cpp", | 81 "core/v8/ScriptController.cpp", |
| 82 "core/v8/ScriptController.h", | 82 "core/v8/ScriptController.h", |
| 83 "core/v8/ScriptCustomElementDefinition.cpp", | 83 "core/v8/ScriptCustomElementDefinition.cpp", |
| 84 "core/v8/ScriptCustomElementDefinition.h", | 84 "core/v8/ScriptCustomElementDefinition.h", |
| 85 "core/v8/ScriptCustomElementDefinitionBuilder.cpp", | 85 "core/v8/ScriptCustomElementDefinitionBuilder.cpp", |
| 86 "core/v8/ScriptCustomElementDefinitionBuilder.h", | 86 "core/v8/ScriptCustomElementDefinitionBuilder.h", |
| 87 "core/v8/ScriptEventListener.cpp", | 87 "core/v8/ScriptEventListener.cpp", |
| 88 "core/v8/ScriptEventListener.h", | 88 "core/v8/ScriptEventListener.h", |
| 89 "core/v8/ScriptFunction.cpp", | 89 "core/v8/ScriptFunction.cpp", |
| 90 "core/v8/ScriptFunction.h", | 90 "core/v8/ScriptFunction.h", |
| 91 "core/v8/ScriptModule.cpp", |
| 92 "core/v8/ScriptModule.h", |
| 91 "core/v8/ScriptPromise.cpp", | 93 "core/v8/ScriptPromise.cpp", |
| 92 "core/v8/ScriptPromise.h", | 94 "core/v8/ScriptPromise.h", |
| 93 "core/v8/ScriptPromiseProperties.h", | 95 "core/v8/ScriptPromiseProperties.h", |
| 94 "core/v8/ScriptPromiseProperty.h", | 96 "core/v8/ScriptPromiseProperty.h", |
| 95 "core/v8/ScriptPromisePropertyBase.cpp", | 97 "core/v8/ScriptPromisePropertyBase.cpp", |
| 96 "core/v8/ScriptPromisePropertyBase.h", | 98 "core/v8/ScriptPromisePropertyBase.h", |
| 97 "core/v8/ScriptPromiseResolver.cpp", | 99 "core/v8/ScriptPromiseResolver.cpp", |
| 98 "core/v8/ScriptPromiseResolver.h", | 100 "core/v8/ScriptPromiseResolver.h", |
| 99 "core/v8/ScriptRegexp.cpp", | 101 "core/v8/ScriptRegexp.cpp", |
| 100 "core/v8/ScriptRegexp.h", | 102 "core/v8/ScriptRegexp.h", |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 "core/v8/TraceWrapperMemberTest.cpp", | 236 "core/v8/TraceWrapperMemberTest.cpp", |
| 235 "core/v8/V8BindingForTesting.cpp", | 237 "core/v8/V8BindingForTesting.cpp", |
| 236 "core/v8/V8BindingForTesting.h", | 238 "core/v8/V8BindingForTesting.h", |
| 237 "core/v8/V8BindingTest.cpp", | 239 "core/v8/V8BindingTest.cpp", |
| 238 "core/v8/V8ObjectBuilderTest.cpp", | 240 "core/v8/V8ObjectBuilderTest.cpp", |
| 239 "core/v8/V8ScriptRunnerTest.cpp", | 241 "core/v8/V8ScriptRunnerTest.cpp", |
| 240 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", | 242 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", |
| 241 ], | 243 ], |
| 242 "abspath") | 244 "abspath") |
| 243 bindings_unittest_files += bindings_modules_v8_unittest_files | 245 bindings_unittest_files += bindings_modules_v8_unittest_files |
| OLD | NEW |