| 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("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 5 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| 6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 6 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
| 7 import("//third_party/WebKit/Source/modules/modules.gni") | 7 import("//third_party/WebKit/Source/modules/modules.gni") |
| 8 import("//third_party/WebKit/Source/modules/modules_idl_files.gni") |
| 8 | 9 |
| 9 visibility = [ "//third_party/WebKit/*" ] | 10 visibility = [ "//third_party/WebKit/*" ] |
| 10 | 11 |
| 11 # bindings_modules_generated in modules/v8/generated.gyp | 12 # bindings_modules_generated in modules/v8/generated.gyp |
| 12 group("bindings_modules_generated") { | 13 group("bindings_modules_generated") { |
| 13 public_deps = [ | 14 public_deps = [ |
| 14 ":bindings_modules_impl_generated", | 15 ":bindings_modules_impl_generated", |
| 15 ":bindings_modules_v8_generated_aggregate", | 16 ":bindings_modules_v8_generated_aggregate", |
| 16 ":bindings_modules_v8_generated_individual", | 17 ":bindings_modules_v8_generated_individual", |
| 17 ":bindings_modules_v8_generated_init_partial", | 18 ":bindings_modules_v8_generated_init_partial", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "--output", | 89 "--output", |
| 89 rebase_path(bindings_modules_generated_init_partial_interfaces_file, | 90 rebase_path(bindings_modules_generated_init_partial_interfaces_file, |
| 90 root_build_dir), | 91 root_build_dir), |
| 91 "--write-file-only-if-changed=1", | 92 "--write-file-only-if-changed=1", |
| 92 ] | 93 ] |
| 93 | 94 |
| 94 deps = [ | 95 deps = [ |
| 95 "//third_party/WebKit/Source/bindings/modules:interfaces_info", | 96 "//third_party/WebKit/Source/bindings/modules:interfaces_info", |
| 96 ] | 97 ] |
| 97 } | 98 } |
| OLD | NEW |