| 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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 "gesture_detection/gesture_event_data_packet_unittest.cc", | 357 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 356 "gesture_detection/gesture_provider_unittest.cc", | 358 "gesture_detection/gesture_provider_unittest.cc", |
| 357 "gesture_detection/motion_event_buffer_unittest.cc", | 359 "gesture_detection/motion_event_buffer_unittest.cc", |
| 358 "gesture_detection/motion_event_generic_unittest.cc", | 360 "gesture_detection/motion_event_generic_unittest.cc", |
| 359 "gesture_detection/snap_scroll_controller_unittest.cc", | 361 "gesture_detection/snap_scroll_controller_unittest.cc", |
| 360 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 362 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
| 361 "gesture_detection/velocity_tracker_unittest.cc", | 363 "gesture_detection/velocity_tracker_unittest.cc", |
| 362 "gestures/fling_curve_unittest.cc", | 364 "gestures/fling_curve_unittest.cc", |
| 363 "ipc/latency_info_param_traits_unittest.cc", | 365 "ipc/latency_info_param_traits_unittest.cc", |
| 364 "keycodes/dom/keycode_converter_unittest.cc", | 366 "keycodes/dom/keycode_converter_unittest.cc", |
| 367 "keycodes/key_map_win_unittest.cc", |
| 365 "keycodes/keyboard_code_conversion_unittest.cc", | 368 "keycodes/keyboard_code_conversion_unittest.cc", |
| 366 "latency_info_unittest.cc", | 369 "latency_info_unittest.cc", |
| 367 "platform/platform_event_source_unittest.cc", | 370 "platform/platform_event_source_unittest.cc", |
| 368 "scoped_target_handler_unittest.cc", | 371 "scoped_target_handler_unittest.cc", |
| 369 ] | 372 ] |
| 370 | 373 |
| 371 deps = [ | 374 deps = [ |
| 372 ":dom_keycode_converter", | 375 ":dom_keycode_converter", |
| 373 ":events", | 376 ":events", |
| 374 ":events_base", | 377 ":events_base", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 sources += [ "android/motion_event_android_unittest.cc" ] | 459 sources += [ "android/motion_event_android_unittest.cc" ] |
| 457 } | 460 } |
| 458 } | 461 } |
| 459 | 462 |
| 460 if (is_android) { | 463 if (is_android) { |
| 461 generate_jar_jni("motionevent_jni_headers") { | 464 generate_jar_jni("motionevent_jni_headers") { |
| 462 jni_package = "ui" | 465 jni_package = "ui" |
| 463 classes = [ "android/view/MotionEvent.class" ] | 466 classes = [ "android/view/MotionEvent.class" ] |
| 464 } | 467 } |
| 465 } | 468 } |
| OLD | NEW |