| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 import("//ui/ozone/ozone.gni") | 9 import("//ui/ozone/ozone.gni") |
| 10 | 10 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 component("events_base") { | 44 component("events_base") { |
| 45 sources = [ | 45 sources = [ |
| 46 "android/scroller.cc", | 46 "android/scroller.cc", |
| 47 "android/scroller.h", | 47 "android/scroller.h", |
| 48 "base_event_utils.cc", | 48 "base_event_utils.cc", |
| 49 "base_event_utils.h", | 49 "base_event_utils.h", |
| 50 "event_switches.cc", | 50 "event_switches.cc", |
| 51 "event_switches.h", | 51 "event_switches.h", |
| 52 "events_base_export.h", | 52 "events_base_export.h", |
| 53 "fraction_of_time_without_user_input_recorder.cc", |
| 54 "fraction_of_time_without_user_input_recorder.h", |
| 53 "gesture_curve.h", | 55 "gesture_curve.h", |
| 54 "gesture_event_details.cc", | 56 "gesture_event_details.cc", |
| 55 "gesture_event_details.h", | 57 "gesture_event_details.h", |
| 56 "gestures/fling_curve.cc", | 58 "gestures/fling_curve.cc", |
| 57 "gestures/fling_curve.h", | 59 "gestures/fling_curve.h", |
| 58 "keycodes/dom_us_layout_data.h", | 60 "keycodes/dom_us_layout_data.h", |
| 59 "keycodes/keyboard_code_conversion.cc", | 61 "keycodes/keyboard_code_conversion.cc", |
| 60 "keycodes/keyboard_code_conversion.h", | 62 "keycodes/keyboard_code_conversion.h", |
| 61 "keycodes/keyboard_code_conversion_android.cc", | 63 "keycodes/keyboard_code_conversion_android.cc", |
| 62 "keycodes/keyboard_code_conversion_android.h", | 64 "keycodes/keyboard_code_conversion_android.h", |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 | 356 |
| 355 if (!is_ios) { | 357 if (!is_ios) { |
| 356 test("events_unittests") { | 358 test("events_unittests") { |
| 357 sources = [ | 359 sources = [ |
| 358 "android/scroller_unittest.cc", | 360 "android/scroller_unittest.cc", |
| 359 "cocoa/events_mac_unittest.mm", | 361 "cocoa/events_mac_unittest.mm", |
| 360 "event_dispatcher_unittest.cc", | 362 "event_dispatcher_unittest.cc", |
| 361 "event_processor_unittest.cc", | 363 "event_processor_unittest.cc", |
| 362 "event_rewriter_unittest.cc", | 364 "event_rewriter_unittest.cc", |
| 363 "event_unittest.cc", | 365 "event_unittest.cc", |
| 366 "fraction_of_time_without_user_input_recorder_unittest.cc", |
| 364 "gesture_detection/bitset_32_unittest.cc", | 367 "gesture_detection/bitset_32_unittest.cc", |
| 365 "gesture_detection/filtered_gesture_provider_unittest.cc", | 368 "gesture_detection/filtered_gesture_provider_unittest.cc", |
| 366 "gesture_detection/gesture_event_data_packet_unittest.cc", | 369 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 367 "gesture_detection/gesture_provider_unittest.cc", | 370 "gesture_detection/gesture_provider_unittest.cc", |
| 368 "gesture_detection/motion_event_buffer_unittest.cc", | 371 "gesture_detection/motion_event_buffer_unittest.cc", |
| 369 "gesture_detection/motion_event_generic_unittest.cc", | 372 "gesture_detection/motion_event_generic_unittest.cc", |
| 370 "gesture_detection/snap_scroll_controller_unittest.cc", | 373 "gesture_detection/snap_scroll_controller_unittest.cc", |
| 371 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 374 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
| 372 "gesture_detection/velocity_tracker_unittest.cc", | 375 "gesture_detection/velocity_tracker_unittest.cc", |
| 373 "gestures/fling_curve_unittest.cc", | 376 "gestures/fling_curve_unittest.cc", |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 generate_jar_jni("motionevent_jni_headers") { | 500 generate_jar_jni("motionevent_jni_headers") { |
| 498 jni_package = "ui" | 501 jni_package = "ui" |
| 499 classes = [ "android/view/MotionEvent.class" ] | 502 classes = [ "android/view/MotionEvent.class" ] |
| 500 } | 503 } |
| 501 | 504 |
| 502 generate_jar_jni("keyevent_jni_headers") { | 505 generate_jar_jni("keyevent_jni_headers") { |
| 503 jni_package = "ui" | 506 jni_package = "ui" |
| 504 classes = [ "android/view/KeyEvent.class" ] | 507 classes = [ "android/view/KeyEvent.class" ] |
| 505 } | 508 } |
| 506 } | 509 } |
| OLD | NEW |