Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: third_party/WebKit/Source/bindings/bindings.gni

Issue 2555653002: [WIP Prototype] ES6 https://html.spec.whatwg.org/#fetch-a-single-module-script implementation (Closed)
Patch Set: address haraken/yhirano comments Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "core/v8/ScriptController.cpp", 83 "core/v8/ScriptController.cpp",
84 "core/v8/ScriptController.h", 84 "core/v8/ScriptController.h",
85 "core/v8/ScriptCustomElementDefinition.cpp", 85 "core/v8/ScriptCustomElementDefinition.cpp",
86 "core/v8/ScriptCustomElementDefinition.h", 86 "core/v8/ScriptCustomElementDefinition.h",
87 "core/v8/ScriptCustomElementDefinitionBuilder.cpp", 87 "core/v8/ScriptCustomElementDefinitionBuilder.cpp",
88 "core/v8/ScriptCustomElementDefinitionBuilder.h", 88 "core/v8/ScriptCustomElementDefinitionBuilder.h",
89 "core/v8/ScriptEventListener.cpp", 89 "core/v8/ScriptEventListener.cpp",
90 "core/v8/ScriptEventListener.h", 90 "core/v8/ScriptEventListener.h",
91 "core/v8/ScriptFunction.cpp", 91 "core/v8/ScriptFunction.cpp",
92 "core/v8/ScriptFunction.h", 92 "core/v8/ScriptFunction.h",
93 "core/v8/ScriptModuleResolver.h",
94 "core/v8/ScriptModule.cpp",
95 "core/v8/ScriptModule.h",
93 "core/v8/ScriptPromise.cpp", 96 "core/v8/ScriptPromise.cpp",
94 "core/v8/ScriptPromise.h", 97 "core/v8/ScriptPromise.h",
95 "core/v8/ScriptPromiseProperties.h", 98 "core/v8/ScriptPromiseProperties.h",
96 "core/v8/ScriptPromiseProperty.h", 99 "core/v8/ScriptPromiseProperty.h",
97 "core/v8/ScriptPromisePropertyBase.cpp", 100 "core/v8/ScriptPromisePropertyBase.cpp",
98 "core/v8/ScriptPromisePropertyBase.h", 101 "core/v8/ScriptPromisePropertyBase.h",
99 "core/v8/ScriptPromiseResolver.cpp", 102 "core/v8/ScriptPromiseResolver.cpp",
100 "core/v8/ScriptPromiseResolver.h", 103 "core/v8/ScriptPromiseResolver.h",
101 "core/v8/ScriptRegexp.cpp", 104 "core/v8/ScriptRegexp.cpp",
102 "core/v8/ScriptRegexp.h", 105 "core/v8/ScriptRegexp.h",
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 "core/v8/TraceWrapperMemberTest.cpp", 239 "core/v8/TraceWrapperMemberTest.cpp",
237 "core/v8/V8BindingForTesting.cpp", 240 "core/v8/V8BindingForTesting.cpp",
238 "core/v8/V8BindingForTesting.h", 241 "core/v8/V8BindingForTesting.h",
239 "core/v8/V8BindingTest.cpp", 242 "core/v8/V8BindingTest.cpp",
240 "core/v8/V8ObjectBuilderTest.cpp", 243 "core/v8/V8ObjectBuilderTest.cpp",
241 "core/v8/V8ScriptRunnerTest.cpp", 244 "core/v8/V8ScriptRunnerTest.cpp",
242 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", 245 "core/v8/serialization/V8ScriptValueSerializerTest.cpp",
243 ], 246 ],
244 "abspath") 247 "abspath")
245 bindings_unittest_files += bindings_modules_v8_unittest_files 248 bindings_unittest_files += bindings_modules_v8_unittest_files
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698