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

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

Issue 407313002: Add a MotionEventGeneric implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: vesrion Created 6 years, 5 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 | « content/browser/renderer_host/input/motion_event_web.cc ('k') | ui/events/events.gyp » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 static_library("dom4_keycode_converter") { 7 static_library("dom4_keycode_converter") {
8 sources = [ 8 sources = [
9 "keycodes/dom4/keycode_converter.cc", 9 "keycodes/dom4/keycode_converter.cc",
10 "keycodes/dom4/keycode_converter.h", 10 "keycodes/dom4/keycode_converter.h",
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 "gesture_detection/gesture_detection_export.h", 187 "gesture_detection/gesture_detection_export.h",
188 "gesture_detection/gesture_detector.cc", 188 "gesture_detection/gesture_detector.cc",
189 "gesture_detection/gesture_detector.h", 189 "gesture_detection/gesture_detector.h",
190 "gesture_detection/gesture_event_data.cc", 190 "gesture_detection/gesture_event_data.cc",
191 "gesture_detection/gesture_event_data.h", 191 "gesture_detection/gesture_event_data.h",
192 "gesture_detection/gesture_event_data_packet.cc", 192 "gesture_detection/gesture_event_data_packet.cc",
193 "gesture_detection/gesture_event_data_packet.h", 193 "gesture_detection/gesture_event_data_packet.h",
194 "gesture_detection/gesture_config_helper.h", 194 "gesture_detection/gesture_config_helper.h",
195 "gesture_detection/gesture_provider.cc", 195 "gesture_detection/gesture_provider.cc",
196 "gesture_detection/gesture_provider.h", 196 "gesture_detection/gesture_provider.h",
197 "gesture_detection/motion_event.cc",
197 "gesture_detection/motion_event.h", 198 "gesture_detection/motion_event.h",
199 "gesture_detection/motion_event_generic.cc",
200 "gesture_detection/motion_event_generic.h",
198 "gesture_detection/scale_gesture_detector.cc", 201 "gesture_detection/scale_gesture_detector.cc",
199 "gesture_detection/scale_gesture_detector.h", 202 "gesture_detection/scale_gesture_detector.h",
200 "gesture_detection/snap_scroll_controller.cc", 203 "gesture_detection/snap_scroll_controller.cc",
201 "gesture_detection/snap_scroll_controller.h", 204 "gesture_detection/snap_scroll_controller.h",
202 "gesture_detection/touch_disposition_gesture_filter.cc", 205 "gesture_detection/touch_disposition_gesture_filter.cc",
203 "gesture_detection/touch_disposition_gesture_filter.h", 206 "gesture_detection/touch_disposition_gesture_filter.h",
204 "gesture_detection/velocity_tracker_state.cc", 207 "gesture_detection/velocity_tracker_state.cc",
205 "gesture_detection/velocity_tracker_state.h", 208 "gesture_detection/velocity_tracker_state.h",
206 "gesture_detection/velocity_tracker.cc", 209 "gesture_detection/velocity_tracker.cc",
207 "gesture_detection/velocity_tracker.h", 210 "gesture_detection/velocity_tracker.h",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 sources = [ 275 sources = [
273 "cocoa/events_mac_unittest.mm", 276 "cocoa/events_mac_unittest.mm",
274 "event_dispatcher_unittest.cc", 277 "event_dispatcher_unittest.cc",
275 "event_processor_unittest.cc", 278 "event_processor_unittest.cc",
276 "event_rewriter_unittest.cc", 279 "event_rewriter_unittest.cc",
277 "event_unittest.cc", 280 "event_unittest.cc",
278 "gestures/velocity_calculator_unittest.cc", 281 "gestures/velocity_calculator_unittest.cc",
279 "gesture_detection/bitset_32_unittest.cc", 282 "gesture_detection/bitset_32_unittest.cc",
280 "gesture_detection/gesture_event_data_packet_unittest.cc", 283 "gesture_detection/gesture_event_data_packet_unittest.cc",
281 "gesture_detection/gesture_provider_unittest.cc", 284 "gesture_detection/gesture_provider_unittest.cc",
285 "gesture_detection/motion_event_generic_unittest.cc",
282 "gesture_detection/velocity_tracker_unittest.cc", 286 "gesture_detection/velocity_tracker_unittest.cc",
283 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", 287 "gesture_detection/touch_disposition_gesture_filter_unittest.cc",
284 "keycodes/dom4/keycode_converter_unittest.cc", 288 "keycodes/dom4/keycode_converter_unittest.cc",
285 "latency_info_unittest.cc", 289 "latency_info_unittest.cc",
286 "platform/platform_event_source_unittest.cc", 290 "platform/platform_event_source_unittest.cc",
287 "x/events_x_unittest.cc", 291 "x/events_x_unittest.cc",
288 ] 292 ]
289 293
290 if (!use_x11) { 294 if (!use_x11) {
291 sources -= [ 295 sources -= [
(...skipping 13 matching lines...) Expand all
305 ":events_base", 309 ":events_base",
306 ":gesture_detection", 310 ":gesture_detection",
307 ":test_support", 311 ":test_support",
308 "//base", 312 "//base",
309 "//base/test:run_all_unittests", 313 "//base/test:run_all_unittests",
310 "//skia", 314 "//skia",
311 "//testing/gtest", 315 "//testing/gtest",
312 "//ui/gfx:test_support", 316 "//ui/gfx:test_support",
313 ] 317 ]
314 } 318 }
OLDNEW
« no previous file with comments | « content/browser/renderer_host/input/motion_event_web.cc ('k') | ui/events/events.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698