| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 | 355 |
| 354 if (!is_ios) { | 356 if (!is_ios) { |
| 355 test("events_unittests") { | 357 test("events_unittests") { |
| 356 sources = [ | 358 sources = [ |
| 357 "android/scroller_unittest.cc", | 359 "android/scroller_unittest.cc", |
| 358 "cocoa/events_mac_unittest.mm", | 360 "cocoa/events_mac_unittest.mm", |
| 359 "event_dispatcher_unittest.cc", | 361 "event_dispatcher_unittest.cc", |
| 360 "event_processor_unittest.cc", | 362 "event_processor_unittest.cc", |
| 361 "event_rewriter_unittest.cc", | 363 "event_rewriter_unittest.cc", |
| 362 "event_unittest.cc", | 364 "event_unittest.cc", |
| 365 "fraction_of_time_without_user_input_recorder_unittest.cc", |
| 363 "gesture_detection/bitset_32_unittest.cc", | 366 "gesture_detection/bitset_32_unittest.cc", |
| 364 "gesture_detection/filtered_gesture_provider_unittest.cc", | 367 "gesture_detection/filtered_gesture_provider_unittest.cc", |
| 365 "gesture_detection/gesture_event_data_packet_unittest.cc", | 368 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 366 "gesture_detection/gesture_provider_unittest.cc", | 369 "gesture_detection/gesture_provider_unittest.cc", |
| 367 "gesture_detection/motion_event_buffer_unittest.cc", | 370 "gesture_detection/motion_event_buffer_unittest.cc", |
| 368 "gesture_detection/motion_event_generic_unittest.cc", | 371 "gesture_detection/motion_event_generic_unittest.cc", |
| 369 "gesture_detection/snap_scroll_controller_unittest.cc", | 372 "gesture_detection/snap_scroll_controller_unittest.cc", |
| 370 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 373 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
| 371 "gesture_detection/velocity_tracker_unittest.cc", | 374 "gesture_detection/velocity_tracker_unittest.cc", |
| 372 "gestures/fling_curve_unittest.cc", | 375 "gestures/fling_curve_unittest.cc", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 generate_jar_jni("motionevent_jni_headers") { | 497 generate_jar_jni("motionevent_jni_headers") { |
| 495 jni_package = "ui" | 498 jni_package = "ui" |
| 496 classes = [ "android/view/MotionEvent.class" ] | 499 classes = [ "android/view/MotionEvent.class" ] |
| 497 } | 500 } |
| 498 | 501 |
| 499 generate_jar_jni("keyevent_jni_headers") { | 502 generate_jar_jni("keyevent_jni_headers") { |
| 500 jni_package = "ui" | 503 jni_package = "ui" |
| 501 classes = [ "android/view/KeyEvent.class" ] | 504 classes = [ "android/view/KeyEvent.class" ] |
| 502 } | 505 } |
| 503 } | 506 } |
| OLD | NEW |