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

Side by Side Diff: ui/events/blink/BUILD.gn

Issue 2479123003: WIP Add getCoalescedEvents API using vector of WebInputEvents (Closed)
Patch Set: Creating CoalescedWebInputEvent Created 4 years, 1 month 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 source_set("blink") { 7 source_set("blink") {
8 sources = [ 8 sources = [
9 "blink_event_util.cc", 9 "blink_event_util.cc",
10 "blink_event_util.h", 10 "blink_event_util.h",
11 "did_overscroll_params.cc", 11 "did_overscroll_params.cc",
12 "did_overscroll_params.h", 12 "did_overscroll_params.h",
13 "input_handler_proxy.cc", 13 "input_handler_proxy.cc",
14 "input_handler_proxy.h", 14 "input_handler_proxy.h",
15 "input_handler_proxy_client.h", 15 "input_handler_proxy_client.h",
16 "input_scroll_elasticity_controller.cc", 16 "input_scroll_elasticity_controller.cc",
17 "input_scroll_elasticity_controller.h", 17 "input_scroll_elasticity_controller.h",
18 "scoped_web_input_event.cc",
19 "scoped_web_input_event.h",
20 "synchronous_input_handler_proxy.h", 18 "synchronous_input_handler_proxy.h",
21 "web_input_event.cc", 19 "web_input_event.cc",
22 "web_input_event.h", 20 "web_input_event.h",
23 "web_input_event_traits.cc", 21 "web_input_event_traits.cc",
24 "web_input_event_traits.h", 22 "web_input_event_traits.h",
25 ] 23 ]
26 24
27 deps = [ 25 deps = [
28 "//cc:cc", 26 "//cc:cc",
29 "//third_party/WebKit/public:blink_minimal", 27 "//third_party/WebKit/public:blink_minimal",
30 "//ui/events", 28 "//ui/events",
31 "//ui/events:dom_keycode_converter", 29 "//ui/events:dom_keycode_converter",
32 "//ui/events:events_base", 30 "//ui/events:events_base",
33 "//ui/events:gesture_detection", 31 "//ui/events:gesture_detection",
34 "//ui/gfx/geometry", 32 "//ui/gfx/geometry",
35 ] 33 ]
36 34
37 if (is_win) { 35 if (is_win) {
38 sources += [ 36 sources += [
39 "web_input_event_builders_win.cc", 37 "web_input_event_builders_win.cc",
40 "web_input_event_builders_win.h", 38 "web_input_event_builders_win.h",
41 ] 39 ]
42 deps += [ "//ui/display" ] 40 deps += [ "//ui/display" ]
43 } 41 }
44 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698