| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 deps = [ | 61 deps = [ |
| 62 ":dom_keycode_converter", | 62 ":dom_keycode_converter", |
| 63 "//base/third_party/dynamic_annotations", | 63 "//base/third_party/dynamic_annotations", |
| 64 "//ipc:param_traits", | 64 "//ipc:param_traits", |
| 65 "//skia", | 65 "//skia", |
| 66 ] | 66 ] |
| 67 | 67 |
| 68 public_deps = [ | 68 public_deps = [ |
| 69 "//base", | 69 "//base", |
| 70 "//ipc:ipc", |
| 70 "//ui/events/platform", | 71 "//ui/events/platform", |
| 71 "//ui/gfx", | 72 "//ui/gfx", |
| 72 "//ui/gfx/geometry", | 73 "//ui/gfx/geometry", |
| 73 ] | 74 ] |
| 74 | 75 |
| 75 # TODO(kylechar): move keycodes/ files into own component and x/ files into | 76 # TODO(kylechar): move keycodes/ files into own component and x/ files into |
| 76 # ui/events/x component | 77 # ui/events/x component |
| 77 if (use_x11 || ozone_platform_x11) { | 78 if (use_x11 || ozone_platform_x11) { |
| 78 configs += [ "//build/config/linux:x11" ] | 79 configs += [ "//build/config/linux:x11" ] |
| 79 | 80 |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 "gesture_detection/bitset_32_unittest.cc", | 347 "gesture_detection/bitset_32_unittest.cc", |
| 347 "gesture_detection/filtered_gesture_provider_unittest.cc", | 348 "gesture_detection/filtered_gesture_provider_unittest.cc", |
| 348 "gesture_detection/gesture_event_data_packet_unittest.cc", | 349 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 349 "gesture_detection/gesture_provider_unittest.cc", | 350 "gesture_detection/gesture_provider_unittest.cc", |
| 350 "gesture_detection/motion_event_buffer_unittest.cc", | 351 "gesture_detection/motion_event_buffer_unittest.cc", |
| 351 "gesture_detection/motion_event_generic_unittest.cc", | 352 "gesture_detection/motion_event_generic_unittest.cc", |
| 352 "gesture_detection/snap_scroll_controller_unittest.cc", | 353 "gesture_detection/snap_scroll_controller_unittest.cc", |
| 353 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 354 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
| 354 "gesture_detection/velocity_tracker_unittest.cc", | 355 "gesture_detection/velocity_tracker_unittest.cc", |
| 355 "gestures/fling_curve_unittest.cc", | 356 "gestures/fling_curve_unittest.cc", |
| 357 "ipc/event_param_traits_unittest.cc", |
| 356 "ipc/latency_info_param_traits_unittest.cc", | 358 "ipc/latency_info_param_traits_unittest.cc", |
| 357 "keycodes/dom/keycode_converter_unittest.cc", | 359 "keycodes/dom/keycode_converter_unittest.cc", |
| 358 "keycodes/keyboard_code_conversion_unittest.cc", | 360 "keycodes/keyboard_code_conversion_unittest.cc", |
| 359 "keycodes/platform_key_map_win_unittest.cc", | 361 "keycodes/platform_key_map_win_unittest.cc", |
| 360 "latency_info_unittest.cc", | 362 "latency_info_unittest.cc", |
| 361 "platform/platform_event_source_unittest.cc", | 363 "platform/platform_event_source_unittest.cc", |
| 362 "scoped_target_handler_unittest.cc", | 364 "scoped_target_handler_unittest.cc", |
| 363 ] | 365 ] |
| 364 | 366 |
| 365 deps = [ | 367 deps = [ |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 sources += [ "android/motion_event_android_unittest.cc" ] | 452 sources += [ "android/motion_event_android_unittest.cc" ] |
| 451 } | 453 } |
| 452 } | 454 } |
| 453 | 455 |
| 454 if (is_android) { | 456 if (is_android) { |
| 455 generate_jar_jni("motionevent_jni_headers") { | 457 generate_jar_jni("motionevent_jni_headers") { |
| 456 jni_package = "ui" | 458 jni_package = "ui" |
| 457 classes = [ "android/view/MotionEvent.class" ] | 459 classes = [ "android/view/MotionEvent.class" ] |
| 458 } | 460 } |
| 459 } | 461 } |
| OLD | NEW |