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

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

Issue 634373003: Consolidate content fling implementations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix win build Created 6 years, 2 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/content_tests.gypi ('k') | ui/events/android/OWNERS » ('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",
11 "keycodes/dom4/keycode_converter_data.h", 11 "keycodes/dom4/keycode_converter_data.h",
12 ] 12 ]
13 13
14 deps = [ "//base" ] 14 deps = [ "//base" ]
15 } 15 }
16 16
17 component("events_base") { 17 component("events_base") {
18 sources = [ 18 sources = [
19 "android/scroller.cc",
20 "android/scroller.h",
19 "device_data_manager.cc", 21 "device_data_manager.cc",
20 "device_data_manager.h", 22 "device_data_manager.h",
21 "device_hotplug_event_observer.h", 23 "device_hotplug_event_observer.h",
22 "event_constants.h", 24 "event_constants.h",
23 "event_switches.cc", 25 "event_switches.cc",
24 "event_switches.h", 26 "event_switches.h",
25 "events_base_export.h", 27 "events_base_export.h",
28 "gesture_curve.h",
26 "gesture_event_details.cc", 29 "gesture_event_details.cc",
27 "gesture_event_details.h", 30 "gesture_event_details.h",
28 "gestures/fling_curve.cc", 31 "gestures/fling_curve.cc",
29 "gestures/fling_curve.h", 32 "gestures/fling_curve.h",
30 "gestures/gesture_configuration.cc", 33 "gestures/gesture_configuration.cc",
31 "gestures/gesture_configuration.h", 34 "gestures/gesture_configuration.h",
32 "keycodes/keyboard_code_conversion.cc", 35 "keycodes/keyboard_code_conversion.cc",
33 "keycodes/keyboard_code_conversion.h", 36 "keycodes/keyboard_code_conversion.h",
34 "keycodes/keyboard_code_conversion_android.cc", 37 "keycodes/keyboard_code_conversion_android.cc",
35 "keycodes/keyboard_code_conversion_android.h", 38 "keycodes/keyboard_code_conversion_android.h",
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 sources += [ 269 sources += [
267 "test/events_test_utils_x11.cc", 270 "test/events_test_utils_x11.cc",
268 "test/events_test_utils_x11.h", 271 "test/events_test_utils_x11.h",
269 ] 272 ]
270 deps += [ "//ui/gfx/x" ] 273 deps += [ "//ui/gfx/x" ]
271 } 274 }
272 } 275 }
273 276
274 test("events_unittests") { 277 test("events_unittests") {
275 sources = [ 278 sources = [
279 "android/scroller_unittest.cc",
276 "cocoa/events_mac_unittest.mm", 280 "cocoa/events_mac_unittest.mm",
277 "event_dispatcher_unittest.cc", 281 "event_dispatcher_unittest.cc",
278 "event_processor_unittest.cc", 282 "event_processor_unittest.cc",
279 "event_rewriter_unittest.cc", 283 "event_rewriter_unittest.cc",
280 "event_unittest.cc", 284 "event_unittest.cc",
281 "gesture_detection/bitset_32_unittest.cc", 285 "gesture_detection/bitset_32_unittest.cc",
282 "gesture_detection/gesture_event_data_packet_unittest.cc", 286 "gesture_detection/gesture_event_data_packet_unittest.cc",
283 "gesture_detection/gesture_provider_unittest.cc", 287 "gesture_detection/gesture_provider_unittest.cc",
284 "gesture_detection/motion_event_buffer_unittest.cc", 288 "gesture_detection/motion_event_buffer_unittest.cc",
285 "gesture_detection/motion_event_generic_unittest.cc", 289 "gesture_detection/motion_event_generic_unittest.cc",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 "ozone/evdev/touch_event_converter_evdev_unittest.cc", 325 "ozone/evdev/touch_event_converter_evdev_unittest.cc",
322 ] 326 ]
323 } 327 }
324 328
325 if (use_aura) { 329 if (use_aura) {
326 sources += [ 330 sources += [
327 "gestures/gesture_provider_aura_unittest.cc", 331 "gestures/gesture_provider_aura_unittest.cc",
328 ] 332 ]
329 } 333 }
330 } 334 }
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | ui/events/android/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698