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

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

Issue 393953012: Eager Gesture Recognition on Aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactor based on Jared's comments. Created 6 years, 4 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 | Annotate | Revision Log
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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 test("events_unittests") { 258 test("events_unittests") {
259 sources = [ 259 sources = [
260 "cocoa/events_mac_unittest.mm", 260 "cocoa/events_mac_unittest.mm",
261 "event_dispatcher_unittest.cc", 261 "event_dispatcher_unittest.cc",
262 "event_processor_unittest.cc", 262 "event_processor_unittest.cc",
263 "event_rewriter_unittest.cc", 263 "event_rewriter_unittest.cc",
264 "event_unittest.cc", 264 "event_unittest.cc",
265 "gestures/velocity_calculator_unittest.cc", 265 "gestures/velocity_calculator_unittest.cc",
266 "gesture_detection/bitset_32_unittest.cc", 266 "gesture_detection/bitset_32_unittest.cc",
267 "gesture_detection/gesture_event_data_packet_unittest.cc", 267 "gesture_detection/gesture_event_data_packet_unittest.cc",
268 "gesture_detection/gesture_provider_aura_unittest.cc",
268 "gesture_detection/gesture_provider_unittest.cc", 269 "gesture_detection/gesture_provider_unittest.cc",
269 "gesture_detection/motion_event_generic_unittest.cc", 270 "gesture_detection/motion_event_generic_unittest.cc",
270 "gesture_detection/velocity_tracker_unittest.cc", 271 "gesture_detection/velocity_tracker_unittest.cc",
271 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", 272 "gesture_detection/touch_disposition_gesture_filter_unittest.cc",
272 "keycodes/dom4/keycode_converter_unittest.cc", 273 "keycodes/dom4/keycode_converter_unittest.cc",
273 "latency_info_unittest.cc", 274 "latency_info_unittest.cc",
274 "platform/platform_event_source_unittest.cc", 275 "platform/platform_event_source_unittest.cc",
275 "x/events_x_unittest.cc", 276 "x/events_x_unittest.cc",
276 ] 277 ]
277 278
(...skipping 15 matching lines...) Expand all
293 ":events_base", 294 ":events_base",
294 ":gesture_detection", 295 ":gesture_detection",
295 ":test_support", 296 ":test_support",
296 "//base", 297 "//base",
297 "//base/test:run_all_unittests", 298 "//base/test:run_all_unittests",
298 "//skia", 299 "//skia",
299 "//testing/gtest", 300 "//testing/gtest",
300 "//ui/gfx:test_support", 301 "//ui/gfx:test_support",
301 ] 302 ]
302 } 303 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698