| 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 make_event_factory("event_modules") { | 64 make_event_factory("event_modules") { |
| 65 visibility = [ ":*" ] | 65 visibility = [ ":*" ] |
| 66 in_files = [ "$root_gen_dir/blink/EventModulesInterfaces.in" ] | 66 in_files = [ "$root_gen_dir/blink/EventModulesInterfaces.in" ] |
| 67 outputs = [ | 67 outputs = [ |
| 68 "$blink_modules_output_dir/EventModules.cpp", | 68 "$blink_modules_output_dir/EventModules.cpp", |
| 69 "$blink_modules_output_dir/EventModulesHeaders.h", | 69 "$blink_modules_output_dir/EventModulesHeaders.h", |
| 70 ] | 70 ] |
| 71 deps = make_core_generated_deps + [ "//third_party/WebKit/Source/bindings/modu
les:modules_bindings_generated_event_interfaces" ] | 71 deps = make_core_generated_deps + [ "//third_party/WebKit/Source/bindings/modu
les:modules_bindings_generated_event_interfaces" ] |
| 72 deps += [ | 72 deps += [ |
| 73 "//device/generic_sensor/public/interfaces", | |
| 74 "//device/generic_sensor/public/interfaces:interfaces_blink", | 73 "//device/generic_sensor/public/interfaces:interfaces_blink", |
| 75 "//device/vr:mojo_bindings_blink", | 74 "//device/vr:mojo_bindings_blink", |
| 76 "//media/midi:mojo_blink", | 75 "//media/midi:mojo_blink", |
| 77 ] | 76 ] |
| 78 } | 77 } |
| 79 | 78 |
| 80 make_names("event_modules_names") { | 79 make_names("event_modules_names") { |
| 81 visibility = [ ":*" ] | 80 visibility = [ ":*" ] |
| 82 in_files = [ "$root_gen_dir/blink/EventModulesInterfaces.in" ] | 81 in_files = [ "$root_gen_dir/blink/EventModulesInterfaces.in" ] |
| 83 outputs = [ | 82 outputs = [ |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 | 188 |
| 190 deps = [ | 189 deps = [ |
| 191 ":event_modules", | 190 ":event_modules", |
| 192 ":event_modules_names", | 191 ":event_modules_names", |
| 193 ":event_target_modules_names", | 192 ":event_target_modules_names", |
| 194 "//third_party/WebKit/Source/core", | 193 "//third_party/WebKit/Source/core", |
| 195 "//third_party/WebKit/Source/wtf", | 194 "//third_party/WebKit/Source/wtf", |
| 196 "//v8", | 195 "//v8", |
| 197 ] | 196 ] |
| 198 } | 197 } |
| OLD | NEW |