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

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

Issue 2552853002: [Compositor event queue] Coalesce gesture scroll&pinch of the same sequence (Closed)
Patch Set: Created 4 years 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",
(...skipping 19 matching lines...) Expand all
30 "web_input_event_traits.h", 30 "web_input_event_traits.h",
31 ] 31 ]
32 32
33 deps = [ 33 deps = [
34 "//cc:cc", 34 "//cc:cc",
35 "//third_party/WebKit/public:blink_minimal", 35 "//third_party/WebKit/public:blink_minimal",
36 "//ui/events", 36 "//ui/events",
37 "//ui/events:dom_keycode_converter", 37 "//ui/events:dom_keycode_converter",
38 "//ui/events:events_base", 38 "//ui/events:events_base",
39 "//ui/events:gesture_detection", 39 "//ui/events:gesture_detection",
40 "//ui/gfx:gfx",
40 "//ui/gfx/geometry", 41 "//ui/gfx/geometry",
41 ] 42 ]
42 43
43 if (is_win) { 44 if (is_win) {
44 sources += [ 45 sources += [
45 "web_input_event_builders_win.cc", 46 "web_input_event_builders_win.cc",
46 "web_input_event_builders_win.h", 47 "web_input_event_builders_win.h",
47 ] 48 ]
48 deps += [ "//ui/display" ] 49 deps += [ "//ui/display" ]
49 } 50 }
50 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698