| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/core/core.gni") | 5 import("//third_party/WebKit/Source/core/core.gni") |
| 6 | 6 |
| 7 blink_core_sources("input") { | 7 blink_core_sources("input") { |
| 8 sources = [ | 8 sources = [ |
| 9 "BoundaryEventDispatcher.cpp", | 9 "BoundaryEventDispatcher.cpp", |
| 10 "BoundaryEventDispatcher.h", | 10 "BoundaryEventDispatcher.h", |
| 11 "ContextMenuAllowedScope.cpp", |
| 12 "ContextMenuAllowedScope.h", |
| 11 "EventHandler.cpp", | 13 "EventHandler.cpp", |
| 12 "EventHandler.h", | 14 "EventHandler.h", |
| 13 "EventHandlingUtil.cpp", | 15 "EventHandlingUtil.cpp", |
| 14 "EventHandlingUtil.h", | 16 "EventHandlingUtil.h", |
| 15 "GestureManager.cpp", | 17 "GestureManager.cpp", |
| 16 "GestureManager.h", | 18 "GestureManager.h", |
| 17 "InputDeviceCapabilities.cpp", | 19 "InputDeviceCapabilities.cpp", |
| 18 "InputDeviceCapabilities.h", | 20 "InputDeviceCapabilities.h", |
| 19 "KeyboardEventManager.cpp", | 21 "KeyboardEventManager.cpp", |
| 20 "KeyboardEventManager.h", | 22 "KeyboardEventManager.h", |
| 21 "MouseEventManager.cpp", | 23 "MouseEventManager.cpp", |
| 22 "MouseEventManager.h", | 24 "MouseEventManager.h", |
| 23 "PointerEventManager.cpp", | 25 "PointerEventManager.cpp", |
| 24 "PointerEventManager.h", | 26 "PointerEventManager.h", |
| 25 "ScrollManager.cpp", | 27 "ScrollManager.cpp", |
| 26 "ScrollManager.h", | 28 "ScrollManager.h", |
| 27 "TouchActionUtil.cpp", | 29 "TouchActionUtil.cpp", |
| 28 "TouchActionUtil.h", | 30 "TouchActionUtil.h", |
| 29 "TouchEventManager.cpp", | 31 "TouchEventManager.cpp", |
| 30 "TouchEventManager.h", | 32 "TouchEventManager.h", |
| 31 ] | 33 ] |
| 32 | 34 |
| 33 configs += [ | 35 configs += [ |
| 34 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 36 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 35 "//build/config/compiler:no_size_t_to_int_warning", | 37 "//build/config/compiler:no_size_t_to_int_warning", |
| 36 ] | 38 ] |
| 37 } | 39 } |
| OLD | NEW |