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

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

Issue 2751833006: Treat NotifyVirtual events as mouse move events for blink. (Closed)
Patch Set: Try to fix build Created 3 years, 9 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 | ui/events/blink/web_input_event.cc » ('j') | ui/events/blink/web_input_event.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import("//ui/ozone/ozone.gni")
6 7
7 source_set("blink") { 8 source_set("blink") {
8 sources = [ 9 sources = [
9 "blink_event_util.cc", 10 "blink_event_util.cc",
10 "blink_event_util.h", 11 "blink_event_util.h",
11 "blink_features.cc", 12 "blink_features.cc",
12 "blink_features.h", 13 "blink_features.h",
13 "compositor_thread_event_queue.cc", 14 "compositor_thread_event_queue.cc",
14 "compositor_thread_event_queue.h", 15 "compositor_thread_event_queue.h",
15 "did_overscroll_params.cc", 16 "did_overscroll_params.cc",
(...skipping 23 matching lines...) Expand all
39 "//ui/gfx/geometry", 40 "//ui/gfx/geometry",
40 ] 41 ]
41 42
42 if (is_win) { 43 if (is_win) {
43 sources += [ 44 sources += [
44 "web_input_event_builders_win.cc", 45 "web_input_event_builders_win.cc",
45 "web_input_event_builders_win.h", 46 "web_input_event_builders_win.h",
46 ] 47 ]
47 deps += [ "//ui/display" ] 48 deps += [ "//ui/display" ]
48 } 49 }
50
51 if (use_x11 || ozone_platform_x11) {
52 deps += [ "//ui/events/x" ]
53 }
49 } 54 }
OLDNEW
« no previous file with comments | « no previous file | ui/events/blink/web_input_event.cc » ('j') | ui/events/blink/web_input_event.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698