| 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  |   8  | 
|   9 visibility = [ "//third_party/WebKit/*" ] |   9 visibility = [ "//third_party/WebKit/*" ] | 
|  10  |  10  | 
|  11 core_idl_with_modules_dependency_files_list = "$target_gen_dir/core_idl_with_mod
    ules_dependency_files.tmp" |  11 core_idl_with_modules_dependency_files_list = "$target_gen_dir/core_idl_with_mod
    ules_dependency_files.tmp" | 
|  12 write_file(core_idl_with_modules_dependency_files_list, |  12 write_file(core_idl_with_modules_dependency_files_list, | 
|  13            rebase_path(core_idl_with_modules_dependency_files, root_build_dir)) |  13            rebase_path(core_idl_with_modules_dependency_files, root_build_dir)) | 
|  14  |  14  | 
|  15 # bindings_modules_generated in modules/v8/generated.gyp |  15 # bindings_modules_generated in modules/v8/generated.gyp | 
|  16 group("bindings_modules_generated") { |  16 group("bindings_modules_generated") { | 
|  17   deps = [ |  17   public_deps = [ | 
|  18     ":bindings_modules_impl_generated", |  18     ":bindings_modules_impl_generated", | 
|  19     ":bindings_modules_v8_generated_aggregate", |  19     ":bindings_modules_v8_generated_aggregate", | 
|  20     ":bindings_modules_v8_generated_individual", |  20     ":bindings_modules_v8_generated_individual", | 
|  21     ":bindings_modules_v8_generated_init_partial", |  21     ":bindings_modules_v8_generated_init_partial", | 
|  22     ":bindings_modules_v8_generated_partial_aggregate", |  22     ":bindings_modules_v8_generated_partial_aggregate", | 
|  23     ":bindings_modules_v8_generated_partial_individual", |  23     ":bindings_modules_v8_generated_partial_individual", | 
|  24   ] |  24   ] | 
|  25 } |  25 } | 
|  26  |  26  | 
|  27 # bindings_modules_generated_aggregate in modules/v8/generated.gyp |  27 # bindings_modules_generated_aggregate in modules/v8/generated.gyp | 
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  83     "--output", |  83     "--output", | 
|  84     rebase_path(bindings_modules_generated_init_partial_interfaces_file, root_bu
    ild_dir), |  84     rebase_path(bindings_modules_generated_init_partial_interfaces_file, root_bu
    ild_dir), | 
|  85     "--write-file-only-if-changed=1", |  85     "--write-file-only-if-changed=1", | 
|  86   ] |  86   ] | 
|  87  |  87  | 
|  88   deps = [ |  88   deps = [ | 
|  89     "//third_party/WebKit/Source/bindings/modules:interfaces_info", |  89     "//third_party/WebKit/Source/bindings/modules:interfaces_info", | 
|  90   ] |  90   ] | 
|  91 } |  91 } | 
|  92  |  92  | 
| OLD | NEW |