| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 "gesture_detection/bitset_32_unittest.cc", | 344 "gesture_detection/bitset_32_unittest.cc", |
| 345 "gesture_detection/filtered_gesture_provider_unittest.cc", | 345 "gesture_detection/filtered_gesture_provider_unittest.cc", |
| 346 "gesture_detection/gesture_event_data_packet_unittest.cc", | 346 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 347 "gesture_detection/gesture_provider_unittest.cc", | 347 "gesture_detection/gesture_provider_unittest.cc", |
| 348 "gesture_detection/motion_event_buffer_unittest.cc", | 348 "gesture_detection/motion_event_buffer_unittest.cc", |
| 349 "gesture_detection/motion_event_generic_unittest.cc", | 349 "gesture_detection/motion_event_generic_unittest.cc", |
| 350 "gesture_detection/snap_scroll_controller_unittest.cc", | 350 "gesture_detection/snap_scroll_controller_unittest.cc", |
| 351 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 351 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
| 352 "gesture_detection/velocity_tracker_unittest.cc", | 352 "gesture_detection/velocity_tracker_unittest.cc", |
| 353 "gestures/fling_curve_unittest.cc", | 353 "gestures/fling_curve_unittest.cc", |
| 354 "ipc/event_param_traits_unittest.cc", |
| 354 "ipc/latency_info_param_traits_unittest.cc", | 355 "ipc/latency_info_param_traits_unittest.cc", |
| 355 "keycodes/dom/keycode_converter_unittest.cc", | 356 "keycodes/dom/keycode_converter_unittest.cc", |
| 356 "keycodes/keyboard_code_conversion_unittest.cc", | 357 "keycodes/keyboard_code_conversion_unittest.cc", |
| 357 "latency_info_unittest.cc", | 358 "latency_info_unittest.cc", |
| 358 "platform/platform_event_source_unittest.cc", | 359 "platform/platform_event_source_unittest.cc", |
| 359 "scoped_target_handler_unittest.cc", | 360 "scoped_target_handler_unittest.cc", |
| 360 ] | 361 ] |
| 361 | 362 |
| 362 deps = [ | 363 deps = [ |
| 363 ":dom_keycode_converter", | 364 ":dom_keycode_converter", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 sources += [ "android/motion_event_android_unittest.cc" ] | 448 sources += [ "android/motion_event_android_unittest.cc" ] |
| 448 } | 449 } |
| 449 } | 450 } |
| 450 | 451 |
| 451 if (is_android) { | 452 if (is_android) { |
| 452 generate_jar_jni("motionevent_jni_headers") { | 453 generate_jar_jni("motionevent_jni_headers") { |
| 453 jni_package = "ui" | 454 jni_package = "ui" |
| 454 classes = [ "android/view/MotionEvent.class" ] | 455 classes = [ "android/view/MotionEvent.class" ] |
| 455 } | 456 } |
| 456 } | 457 } |
| OLD | NEW |