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 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 Loading... |
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" |
OLD | NEW |