| 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 "//skia", | 62 "//skia", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "event_target.cc", | 117 "event_target.cc", |
| 120 "event_target.h", | 118 "event_target.h", |
| 121 "event_target_iterator.h", | 119 "event_target_iterator.h", |
| 122 "event_targeter.h", | 120 "event_targeter.h", |
| 123 "event_utils.cc", | 121 "event_utils.cc", |
| 124 "event_utils.h", | 122 "event_utils.h", |
| 125 "events_export.h", | 123 "events_export.h", |
| 126 "events_stub.cc", | 124 "events_stub.cc", |
| 127 "gestures/gesture_recognizer_impl_mac.cc", | 125 "gestures/gesture_recognizer_impl_mac.cc", |
| 128 "gestures/gesture_types.h", | 126 "gestures/gesture_types.h", |
| 127 "keycodes/platform_key_map_win.cc", |
| 128 "keycodes/platform_key_map_win.h", |
| 129 "null_event_targeter.cc", | 129 "null_event_targeter.cc", |
| 130 "null_event_targeter.h", | 130 "null_event_targeter.h", |
| 131 "scoped_target_handler.cc", | 131 "scoped_target_handler.cc", |
| 132 "scoped_target_handler.h", | 132 "scoped_target_handler.h", |
| 133 "win/events_win.cc", | 133 "win/events_win.cc", |
| 134 "win/system_event_state_lookup.cc", | 134 "win/system_event_state_lookup.cc", |
| 135 "win/system_event_state_lookup.h", | 135 "win/system_event_state_lookup.h", |
| 136 ] | 136 ] |
| 137 | 137 |
| 138 defines = [ "EVENTS_IMPLEMENTATION" ] | 138 defines = [ "EVENTS_IMPLEMENTATION" ] |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 generate_jar_jni("motionevent_jni_headers") { | 465 generate_jar_jni("motionevent_jni_headers") { |
| 466 jni_package = "ui" | 466 jni_package = "ui" |
| 467 classes = [ "android/view/MotionEvent.class" ] | 467 classes = [ "android/view/MotionEvent.class" ] |
| 468 } | 468 } |
| 469 | 469 |
| 470 generate_jar_jni("keyevent_jni_headers") { | 470 generate_jar_jni("keyevent_jni_headers") { |
| 471 jni_package = "ui" | 471 jni_package = "ui" |
| 472 classes = [ "android/view/KeyEvent.class" ] | 472 classes = [ "android/view/KeyEvent.class" ] |
| 473 } | 473 } |
| 474 } | 474 } |
| OLD | NEW |