| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "keycodes/dom_us_layout_data.h", | 43 "keycodes/dom_us_layout_data.h", |
| 44 "keycodes/keyboard_code_conversion.cc", | 44 "keycodes/keyboard_code_conversion.cc", |
| 45 "keycodes/keyboard_code_conversion.h", | 45 "keycodes/keyboard_code_conversion.h", |
| 46 "keycodes/keyboard_code_conversion_android.cc", | 46 "keycodes/keyboard_code_conversion_android.cc", |
| 47 "keycodes/keyboard_code_conversion_android.h", | 47 "keycodes/keyboard_code_conversion_android.h", |
| 48 "keycodes/keyboard_code_conversion_mac.h", | 48 "keycodes/keyboard_code_conversion_mac.h", |
| 49 "keycodes/keyboard_code_conversion_mac.mm", | 49 "keycodes/keyboard_code_conversion_mac.mm", |
| 50 "keycodes/keyboard_code_conversion_win.cc", | 50 "keycodes/keyboard_code_conversion_win.cc", |
| 51 "keycodes/keyboard_code_conversion_win.h", | 51 "keycodes/keyboard_code_conversion_win.h", |
| 52 "keycodes/keyboard_codes.h", | 52 "keycodes/keyboard_codes.h", |
| 53 "keycodes/platform_key_map_win.cc", |
| 54 "keycodes/platform_key_map_win.h", |
| 53 "latency_info.cc", | 55 "latency_info.cc", |
| 54 "latency_info.h", | 56 "latency_info.h", |
| 55 ] | 57 ] |
| 56 | 58 |
| 57 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] | 59 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] |
| 58 | 60 |
| 59 deps = [ | 61 deps = [ |
| 60 ":dom_keycode_converter", | 62 ":dom_keycode_converter", |
| 61 "//base/third_party/dynamic_annotations", | 63 "//base/third_party/dynamic_annotations", |
| 62 "//ipc:param_traits", | 64 "//ipc:param_traits", |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", |
| 356 "keycodes/keyboard_code_conversion_unittest.cc", | 358 "keycodes/keyboard_code_conversion_unittest.cc", |
| 359 "keycodes/platform_key_map_win_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", |
| 366 ":gesture_detection", | 369 ":gesture_detection", |
| (...skipping 80 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 |