Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(652)

Side by Side Diff: third_party/WebKit/Source/core/input/BUILD.gn

Issue 2936023002: MouseWheelEventManager is added to handle wheel events. (Closed)
Patch Set: review comments addressed. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/input/EventHandler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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", 11 "ContextMenuAllowedScope.cpp",
12 "ContextMenuAllowedScope.h", 12 "ContextMenuAllowedScope.h",
13 "EventHandler.cpp", 13 "EventHandler.cpp",
14 "EventHandler.h", 14 "EventHandler.h",
15 "EventHandlingUtil.cpp", 15 "EventHandlingUtil.cpp",
16 "EventHandlingUtil.h", 16 "EventHandlingUtil.h",
17 "GestureManager.cpp", 17 "GestureManager.cpp",
18 "GestureManager.h", 18 "GestureManager.h",
19 "InputDeviceCapabilities.cpp", 19 "InputDeviceCapabilities.cpp",
20 "InputDeviceCapabilities.h", 20 "InputDeviceCapabilities.h",
21 "KeyboardEventManager.cpp", 21 "KeyboardEventManager.cpp",
22 "KeyboardEventManager.h", 22 "KeyboardEventManager.h",
23 "MouseEventManager.cpp", 23 "MouseEventManager.cpp",
24 "MouseEventManager.h", 24 "MouseEventManager.h",
25 "MouseWheelEventManager.cpp",
26 "MouseWheelEventManager.h",
25 "PointerEventManager.cpp", 27 "PointerEventManager.cpp",
26 "PointerEventManager.h", 28 "PointerEventManager.h",
27 "ScrollManager.cpp", 29 "ScrollManager.cpp",
28 "ScrollManager.h", 30 "ScrollManager.h",
29 "TouchActionUtil.cpp", 31 "TouchActionUtil.cpp",
30 "TouchActionUtil.h", 32 "TouchActionUtil.h",
31 "TouchEventManager.cpp", 33 "TouchEventManager.cpp",
32 "TouchEventManager.h", 34 "TouchEventManager.h",
33 ] 35 ]
34 36
35 configs += [ 37 configs += [
36 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 38 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
37 "//build/config/compiler:no_size_t_to_int_warning", 39 "//build/config/compiler:no_size_t_to_int_warning",
38 ] 40 ]
39 } 41 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/input/EventHandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698