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

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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 "$bindings_modules_v8_output_dir/V8{{source_name_part}}.h", 91 "$bindings_modules_v8_output_dir/V8{{source_name_part}}.h",
92 ]) 92 ])
93 93
94 bindings_modules_generated_partial_interface_files = 94 bindings_modules_generated_partial_interface_files =
95 process_file_template( 95 process_file_template(
96 core_idl_with_modules_dependency_files, 96 core_idl_with_modules_dependency_files,
97 [ 97 [
98 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.cpp", 98 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.cpp",
99 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.h", 99 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.h",
100 ]) 100 ])
101
102 bindings_generated_v8_snapshot_external_references_file =
103 "$bindings_modules_v8_output_dir/V8SnapshotExternalReferences.cpp"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698