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

Side by Side Diff: third_party/WebKit/Source/bindings/modules/v8/generated.gni

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: Work for most comments Created 3 years, 6 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//third_party/WebKit/Source/bindings/bindings.gni") 6 import("//third_party/WebKit/Source/bindings/bindings.gni")
7 import("//third_party/WebKit/Source/core/core_idl_files.gni") 7 import("//third_party/WebKit/Source/core/core_idl_files.gni")
8 import("//third_party/WebKit/Source/modules/modules_idl_files.gni") 8 import("//third_party/WebKit/Source/modules/modules_idl_files.gni")
9 9
10 bindings_modules_v8_output_dir = "$bindings_output_dir/modules/v8" 10 bindings_modules_v8_output_dir = "$bindings_output_dir/modules/v8"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "$bindings_modules_v8_output_dir/V8{{source_name_part}}.h", 89 "$bindings_modules_v8_output_dir/V8{{source_name_part}}.h",
90 ]) 90 ])
91 91
92 bindings_modules_generated_partial_interface_files = 92 bindings_modules_generated_partial_interface_files =
93 process_file_template( 93 process_file_template(
94 core_idl_with_modules_dependency_files, 94 core_idl_with_modules_dependency_files,
95 [ 95 [
96 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.cpp", 96 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.cpp",
97 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.h", 97 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.h",
98 ]) 98 ])
99
100 bindings_generated_reference_files =
101 [ "$bindings_modules_v8_output_dir/V8SnapshotReference.cpp" ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698