| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "keycodes/keyboard_codes.h", | 56 "keycodes/keyboard_codes.h", |
| 57 "keycodes/platform_key_map_win.cc", | 57 "keycodes/platform_key_map_win.cc", |
| 58 "keycodes/platform_key_map_win.h", | 58 "keycodes/platform_key_map_win.h", |
| 59 "latency_info.cc", | 59 "latency_info.cc", |
| 60 "latency_info.h", | 60 "latency_info.h", |
| 61 ] | 61 ] |
| 62 | 62 |
| 63 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] | 63 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] |
| 64 | 64 |
| 65 deps = [ | 65 deps = [ |
| 66 ":dom_keycode_converter", | |
| 67 "//base/third_party/dynamic_annotations", | 66 "//base/third_party/dynamic_annotations", |
| 68 "//skia", | 67 "//skia", |
| 69 ] | 68 ] |
| 70 | 69 |
| 71 public_deps = [ | 70 public_deps = [ |
| 71 ":dom_keycode_converter", |
| 72 "//base", | 72 "//base", |
| 73 "//ui/events/platform", | 73 "//ui/events/platform", |
| 74 "//ui/gfx", | 74 "//ui/gfx", |
| 75 "//ui/gfx/geometry", | 75 "//ui/gfx/geometry", |
| 76 ] | 76 ] |
| 77 | 77 |
| 78 # TODO(kylechar): move keycodes/ files into own component and x/ files into | 78 # TODO(kylechar): move keycodes/ files into own component and x/ files into |
| 79 # ui/events/x component | 79 # ui/events/x component |
| 80 if (use_x11 || ozone_platform_x11) { | 80 if (use_x11 || ozone_platform_x11) { |
| 81 configs += [ "//build/config/linux:x11" ] | 81 configs += [ "//build/config/linux:x11" ] |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 generate_jar_jni("motionevent_jni_headers") { | 473 generate_jar_jni("motionevent_jni_headers") { |
| 474 jni_package = "ui" | 474 jni_package = "ui" |
| 475 classes = [ "android/view/MotionEvent.class" ] | 475 classes = [ "android/view/MotionEvent.class" ] |
| 476 } | 476 } |
| 477 | 477 |
| 478 generate_jar_jni("keyevent_jni_headers") { | 478 generate_jar_jni("keyevent_jni_headers") { |
| 479 jni_package = "ui" | 479 jni_package = "ui" |
| 480 classes = [ "android/view/KeyEvent.class" ] | 480 classes = [ "android/view/KeyEvent.class" ] |
| 481 } | 481 } |
| 482 } | 482 } |
| OLD | NEW |