| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "$bindings_modules_v8_output_dir/V8{{source_name_part}}.h", | 87 "$bindings_modules_v8_output_dir/V8{{source_name_part}}.h", |
| 88 ]) | 88 ]) |
| 89 | 89 |
| 90 bindings_modules_generated_partial_interface_files = | 90 bindings_modules_generated_partial_interface_files = |
| 91 process_file_template( | 91 process_file_template( |
| 92 core_idl_with_modules_dependency_files, | 92 core_idl_with_modules_dependency_files, |
| 93 [ | 93 [ |
| 94 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.cpp", | 94 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.cpp", |
| 95 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.h", | 95 "$bindings_modules_v8_output_dir/V8{{source_name_part}}Partial.h", |
| 96 ]) | 96 ]) |
| 97 |
| 98 bindings_generated_reference_files = |
| 99 [ "$bindings_modules_v8_output_dir/V8SnapshotReference.cpp" ] |
| OLD | NEW |