| 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", | |
| 55 "latency_info.cc", | 53 "latency_info.cc", |
| 56 "latency_info.h", | 54 "latency_info.h", |
| 57 ] | 55 ] |
| 58 | 56 |
| 59 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] | 57 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] |
| 60 | 58 |
| 61 deps = [ | 59 deps = [ |
| 62 ":dom_keycode_converter", | 60 ":dom_keycode_converter", |
| 63 "//base/third_party/dynamic_annotations", | 61 "//base/third_party/dynamic_annotations", |
| 64 "//ipc:param_traits", | 62 "//ipc:param_traits", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "event_target.cc", | 114 "event_target.cc", |
| 117 "event_target.h", | 115 "event_target.h", |
| 118 "event_target_iterator.h", | 116 "event_target_iterator.h", |
| 119 "event_targeter.h", | 117 "event_targeter.h", |
| 120 "event_utils.cc", | 118 "event_utils.cc", |
| 121 "event_utils.h", | 119 "event_utils.h", |
| 122 "events_export.h", | 120 "events_export.h", |
| 123 "events_stub.cc", | 121 "events_stub.cc", |
| 124 "gestures/gesture_recognizer_impl_mac.cc", | 122 "gestures/gesture_recognizer_impl_mac.cc", |
| 125 "gestures/gesture_types.h", | 123 "gestures/gesture_types.h", |
| 124 "keycodes/platform_key_map_win.cc", |
| 125 "keycodes/platform_key_map_win.h", |
| 126 "null_event_targeter.cc", | 126 "null_event_targeter.cc", |
| 127 "null_event_targeter.h", | 127 "null_event_targeter.h", |
| 128 "scoped_target_handler.cc", | 128 "scoped_target_handler.cc", |
| 129 "scoped_target_handler.h", | 129 "scoped_target_handler.h", |
| 130 "win/events_win.cc", | 130 "win/events_win.cc", |
| 131 "win/system_event_state_lookup.cc", | 131 "win/system_event_state_lookup.cc", |
| 132 "win/system_event_state_lookup.h", | 132 "win/system_event_state_lookup.h", |
| 133 ] | 133 ] |
| 134 | 134 |
| 135 defines = [ "EVENTS_IMPLEMENTATION" ] | 135 defines = [ "EVENTS_IMPLEMENTATION" ] |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 sources += [ "android/motion_event_android_unittest.cc" ] | 451 sources += [ "android/motion_event_android_unittest.cc" ] |
| 452 } | 452 } |
| 453 } | 453 } |
| 454 | 454 |
| 455 if (is_android) { | 455 if (is_android) { |
| 456 generate_jar_jni("motionevent_jni_headers") { | 456 generate_jar_jni("motionevent_jni_headers") { |
| 457 jni_package = "ui" | 457 jni_package = "ui" |
| 458 classes = [ "android/view/MotionEvent.class" ] | 458 classes = [ "android/view/MotionEvent.class" ] |
| 459 } | 459 } |
| 460 } | 460 } |
| OLD | NEW |