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

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

Issue 2564903002: ScriptController: Expose methods to compile a script and execute a compiled script. (Closed)
Patch Set: Created 4 years 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 21 matching lines...) Expand all
32 "core/v8/custom/V8XMLHttpRequestCustom.cpp", 32 "core/v8/custom/V8XMLHttpRequestCustom.cpp",
33 "core/v8/ActiveDOMCallback.cpp", 33 "core/v8/ActiveDOMCallback.cpp",
34 "core/v8/ActiveDOMCallback.h", 34 "core/v8/ActiveDOMCallback.h",
35 "core/v8/ActiveScriptWrappable.cpp", 35 "core/v8/ActiveScriptWrappable.cpp",
36 "core/v8/ActiveScriptWrappable.h", 36 "core/v8/ActiveScriptWrappable.h",
37 "core/v8/ArrayValue.cpp", 37 "core/v8/ArrayValue.cpp",
38 "core/v8/ArrayValue.h", 38 "core/v8/ArrayValue.h",
39 "core/v8/BindingSecurity.cpp", 39 "core/v8/BindingSecurity.cpp",
40 "core/v8/BindingSecurity.h", 40 "core/v8/BindingSecurity.h",
41 "core/v8/CallbackPromiseAdapter.h", 41 "core/v8/CallbackPromiseAdapter.h",
42 "core/v8/CompiledScript.h",
42 "core/v8/ConditionalFeatures.cpp", 43 "core/v8/ConditionalFeatures.cpp",
43 "core/v8/ConditionalFeatures.h", 44 "core/v8/ConditionalFeatures.h",
44 "core/v8/V0CustomElementBinding.cpp", 45 "core/v8/V0CustomElementBinding.cpp",
45 "core/v8/V0CustomElementBinding.h", 46 "core/v8/V0CustomElementBinding.h",
46 "core/v8/V0CustomElementConstructorBuilder.cpp", 47 "core/v8/V0CustomElementConstructorBuilder.cpp",
47 "core/v8/V0CustomElementConstructorBuilder.h", 48 "core/v8/V0CustomElementConstructorBuilder.h",
48 "core/v8/DocumentWriteEvaluator.cpp", 49 "core/v8/DocumentWriteEvaluator.cpp",
49 "core/v8/DocumentWriteEvaluator.h", 50 "core/v8/DocumentWriteEvaluator.h",
50 "core/v8/DOMDataStore.h", 51 "core/v8/DOMDataStore.h",
51 "core/v8/DOMWrapperMap.h", 52 "core/v8/DOMWrapperMap.h",
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 "abspath") 220 "abspath")
220 221
221 bindings_dir = get_path_info(".", "abspath") 222 bindings_dir = get_path_info(".", "abspath")
222 blink_output_dir = "$root_gen_dir/blink" 223 blink_output_dir = "$root_gen_dir/blink"
223 bindings_output_dir = "$root_gen_dir/blink/bindings" 224 bindings_output_dir = "$root_gen_dir/blink/bindings"
224 bindings_core_v8_output_dir = "$bindings_output_dir/core/v8" 225 bindings_core_v8_output_dir = "$bindings_output_dir/core/v8"
225 226
226 bindings_unittest_files = 227 bindings_unittest_files =
227 get_path_info([ 228 get_path_info([
228 "core/v8/DocumentWriteEvaluatorTest.cpp", 229 "core/v8/DocumentWriteEvaluatorTest.cpp",
230 "core/v8/ScriptControllerTest.cpp",
229 "core/v8/ScriptPromisePropertyTest.cpp", 231 "core/v8/ScriptPromisePropertyTest.cpp",
230 "core/v8/ScriptPromiseResolverTest.cpp", 232 "core/v8/ScriptPromiseResolverTest.cpp",
231 "core/v8/ScriptPromiseTest.cpp", 233 "core/v8/ScriptPromiseTest.cpp",
232 "core/v8/ScriptStreamerTest.cpp", 234 "core/v8/ScriptStreamerTest.cpp",
233 "core/v8/ScriptValueSerializerTest.cpp", 235 "core/v8/ScriptValueSerializerTest.cpp",
234 "core/v8/ScriptWrappableVisitorTest.cpp", 236 "core/v8/ScriptWrappableVisitorTest.cpp",
235 "core/v8/SerializedScriptValueTest.cpp", 237 "core/v8/SerializedScriptValueTest.cpp",
236 "core/v8/ToV8Test.cpp", 238 "core/v8/ToV8Test.cpp",
237 "core/v8/TraceWrapperMemberTest.cpp", 239 "core/v8/TraceWrapperMemberTest.cpp",
238 "core/v8/V8BindingForTesting.cpp", 240 "core/v8/V8BindingForTesting.cpp",
239 "core/v8/V8BindingForTesting.h", 241 "core/v8/V8BindingForTesting.h",
240 "core/v8/V8BindingTest.cpp", 242 "core/v8/V8BindingTest.cpp",
241 "core/v8/V8ObjectBuilderTest.cpp", 243 "core/v8/V8ObjectBuilderTest.cpp",
242 "core/v8/V8ScriptRunnerTest.cpp", 244 "core/v8/V8ScriptRunnerTest.cpp",
243 "core/v8/serialization/V8ScriptValueSerializerTest.cpp", 245 "core/v8/serialization/V8ScriptValueSerializerTest.cpp",
244 ], 246 ],
245 "abspath") 247 "abspath")
246 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