| 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", |
| 10 "BoundaryEventDispatcher.h", |
| 9 "EventHandler.cpp", | 11 "EventHandler.cpp", |
| 10 "EventHandler.h", | 12 "EventHandler.h", |
| 13 "EventHandlingUtil.cpp", |
| 14 "EventHandlingUtil.h", |
| 11 "GestureManager.cpp", | 15 "GestureManager.cpp", |
| 12 "GestureManager.h", | 16 "GestureManager.h", |
| 13 "InputDeviceCapabilities.cpp", | 17 "InputDeviceCapabilities.cpp", |
| 14 "InputDeviceCapabilities.h", | 18 "InputDeviceCapabilities.h", |
| 15 "KeyboardEventManager.cpp", | 19 "KeyboardEventManager.cpp", |
| 16 "KeyboardEventManager.h", | 20 "KeyboardEventManager.h", |
| 21 "MouseEventManager.cpp", |
| 22 "MouseEventManager.h", |
| 17 "PointerEventManager.cpp", | 23 "PointerEventManager.cpp", |
| 18 "PointerEventManager.h", | 24 "PointerEventManager.h", |
| 19 "ScrollManager.cpp", | 25 "ScrollManager.cpp", |
| 20 "ScrollManager.h", | 26 "ScrollManager.h", |
| 21 "TouchActionUtil.cpp", | 27 "TouchActionUtil.cpp", |
| 22 "TouchActionUtil.h", | 28 "TouchActionUtil.h", |
| 23 "TouchEventManager.cpp", | 29 "TouchEventManager.cpp", |
| 24 "TouchEventManager.h", | 30 "TouchEventManager.h", |
| 25 ] | 31 ] |
| 26 | 32 |
| 27 configs += [ | 33 configs += [ |
| 28 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 34 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 29 "//build/config/compiler:no_size_t_to_int_warning", | 35 "//build/config/compiler:no_size_t_to_int_warning", |
| 30 ] | 36 ] |
| 31 } | 37 } |
| OLD | NEW |