| OLD | NEW |
| 1 # Copyright 2014 Tfe Chromium Authors. All rights reserved. | 1 # Copyright 2014 Tfe 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/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.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/build/scripts/scripts.gni") | 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 8 | 8 |
| 9 group("bindings_modules_generated") { | 9 group("bindings_modules_generated") { |
| 10 visibility = [ "//third_party/WebKit/*" ] | 10 visibility = [ "//third_party/WebKit/*" ] |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 } | 63 } |
| 64 | 64 |
| 65 make_event_factory("event_modules") { | 65 make_event_factory("event_modules") { |
| 66 visibility = [ ":*" ] | 66 visibility = [ ":*" ] |
| 67 in_files = [ "$root_gen_dir/blink/EventModulesInterfaces.in" ] | 67 in_files = [ "$root_gen_dir/blink/EventModulesInterfaces.in" ] |
| 68 outputs = [ | 68 outputs = [ |
| 69 "$blink_modules_output_dir/EventModules.cpp", | 69 "$blink_modules_output_dir/EventModules.cpp", |
| 70 "$blink_modules_output_dir/EventModulesHeaders.h", | 70 "$blink_modules_output_dir/EventModulesHeaders.h", |
| 71 ] | 71 ] |
| 72 deps = make_core_generated_deps + [ "//third_party/WebKit/Source/bindings/modu
les:modules_bindings_generated_event_interfaces" ] | 72 deps = make_core_generated_deps + [ "//third_party/WebKit/Source/bindings/modu
les:modules_bindings_generated_event_interfaces" ] |
| 73 deps += [ |
| 74 "//device/generic_sensor/public/interfaces", |
| 75 "//device/generic_sensor/public/interfaces:interfaces_blink", |
| 76 "//device/vr:mojo_bindings_blink", |
| 77 "//media/midi:mojo_blink", |
| 78 ] |
| 73 } | 79 } |
| 74 | 80 |
| 75 make_names("event_modules_names") { | 81 make_names("event_modules_names") { |
| 76 visibility = [ ":*" ] | 82 visibility = [ ":*" ] |
| 77 in_files = [ "$root_gen_dir/blink/EventModulesInterfaces.in" ] | 83 in_files = [ "$root_gen_dir/blink/EventModulesInterfaces.in" ] |
| 78 outputs = [ | 84 outputs = [ |
| 79 "$blink_modules_output_dir/EventModulesNames.cpp", | 85 "$blink_modules_output_dir/EventModulesNames.cpp", |
| 80 "$blink_modules_output_dir/EventModulesNames.h", | 86 "$blink_modules_output_dir/EventModulesNames.h", |
| 81 ] | 87 ] |
| 82 deps = make_core_generated_deps + [ "//third_party/WebKit/Source/bindings/modu
les:modules_bindings_generated_event_interfaces" ] | 88 deps = make_core_generated_deps + [ "//third_party/WebKit/Source/bindings/modu
les:modules_bindings_generated_event_interfaces" ] |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 | 190 |
| 185 deps = [ | 191 deps = [ |
| 186 ":event_modules", | 192 ":event_modules", |
| 187 ":event_modules_names", | 193 ":event_modules_names", |
| 188 ":event_target_modules_names", | 194 ":event_target_modules_names", |
| 189 "//third_party/WebKit/Source/core", | 195 "//third_party/WebKit/Source/core", |
| 190 "//third_party/WebKit/Source/wtf", | 196 "//third_party/WebKit/Source/wtf", |
| 191 "//v8", | 197 "//v8", |
| 192 ] | 198 ] |
| 193 } | 199 } |
| OLD | NEW |