OLD | NEW |
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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//ui/ozone/ozone.gni") | 7 import("//ui/ozone/ozone.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 23 matching lines...) Expand all Loading... |
34 "event_constants.h", | 34 "event_constants.h", |
35 "event_switches.cc", | 35 "event_switches.cc", |
36 "event_switches.h", | 36 "event_switches.h", |
37 "events_base_export.h", | 37 "events_base_export.h", |
38 "gesture_curve.h", | 38 "gesture_curve.h", |
39 "gesture_event_details.cc", | 39 "gesture_event_details.cc", |
40 "gesture_event_details.h", | 40 "gesture_event_details.h", |
41 "gestures/fling_curve.cc", | 41 "gestures/fling_curve.cc", |
42 "gestures/fling_curve.h", | 42 "gestures/fling_curve.h", |
43 "keycodes/dom_us_layout_data.h", | 43 "keycodes/dom_us_layout_data.h", |
| 44 "keycodes/key_map_win.cc", |
| 45 "keycodes/key_map_win.h", |
44 "keycodes/keyboard_code_conversion.cc", | 46 "keycodes/keyboard_code_conversion.cc", |
45 "keycodes/keyboard_code_conversion.h", | 47 "keycodes/keyboard_code_conversion.h", |
46 "keycodes/keyboard_code_conversion_android.cc", | 48 "keycodes/keyboard_code_conversion_android.cc", |
47 "keycodes/keyboard_code_conversion_android.h", | 49 "keycodes/keyboard_code_conversion_android.h", |
48 "keycodes/keyboard_code_conversion_mac.h", | 50 "keycodes/keyboard_code_conversion_mac.h", |
49 "keycodes/keyboard_code_conversion_mac.mm", | 51 "keycodes/keyboard_code_conversion_mac.mm", |
50 "keycodes/keyboard_code_conversion_win.cc", | 52 "keycodes/keyboard_code_conversion_win.cc", |
51 "keycodes/keyboard_code_conversion_win.h", | 53 "keycodes/keyboard_code_conversion_win.h", |
52 "keycodes/keyboard_codes.h", | 54 "keycodes/keyboard_codes.h", |
53 "latency_info.cc", | 55 "latency_info.cc", |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 "gesture_detection/gesture_event_data_packet_unittest.cc", | 348 "gesture_detection/gesture_event_data_packet_unittest.cc", |
347 "gesture_detection/gesture_provider_unittest.cc", | 349 "gesture_detection/gesture_provider_unittest.cc", |
348 "gesture_detection/motion_event_buffer_unittest.cc", | 350 "gesture_detection/motion_event_buffer_unittest.cc", |
349 "gesture_detection/motion_event_generic_unittest.cc", | 351 "gesture_detection/motion_event_generic_unittest.cc", |
350 "gesture_detection/snap_scroll_controller_unittest.cc", | 352 "gesture_detection/snap_scroll_controller_unittest.cc", |
351 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 353 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
352 "gesture_detection/velocity_tracker_unittest.cc", | 354 "gesture_detection/velocity_tracker_unittest.cc", |
353 "gestures/fling_curve_unittest.cc", | 355 "gestures/fling_curve_unittest.cc", |
354 "ipc/latency_info_param_traits_unittest.cc", | 356 "ipc/latency_info_param_traits_unittest.cc", |
355 "keycodes/dom/keycode_converter_unittest.cc", | 357 "keycodes/dom/keycode_converter_unittest.cc", |
| 358 "keycodes/key_map_win_unittest.cc", |
356 "keycodes/keyboard_code_conversion_unittest.cc", | 359 "keycodes/keyboard_code_conversion_unittest.cc", |
357 "latency_info_unittest.cc", | 360 "latency_info_unittest.cc", |
358 "platform/platform_event_source_unittest.cc", | 361 "platform/platform_event_source_unittest.cc", |
359 "scoped_target_handler_unittest.cc", | 362 "scoped_target_handler_unittest.cc", |
360 ] | 363 ] |
361 | 364 |
362 deps = [ | 365 deps = [ |
363 ":dom_keycode_converter", | 366 ":dom_keycode_converter", |
364 ":events", | 367 ":events", |
365 ":events_base", | 368 ":events_base", |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 sources += [ "android/motion_event_android_unittest.cc" ] | 450 sources += [ "android/motion_event_android_unittest.cc" ] |
448 } | 451 } |
449 } | 452 } |
450 | 453 |
451 if (is_android) { | 454 if (is_android) { |
452 generate_jar_jni("motionevent_jni_headers") { | 455 generate_jar_jni("motionevent_jni_headers") { |
453 jni_package = "ui" | 456 jni_package = "ui" |
454 classes = [ "android/view/MotionEvent.class" ] | 457 classes = [ "android/view/MotionEvent.class" ] |
455 } | 458 } |
456 } | 459 } |
OLD | NEW |