| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "keycodes/keyboard_code_conversion.h", | 53 "keycodes/keyboard_code_conversion.h", |
| 54 "keycodes/keyboard_code_conversion_android.cc", | 54 "keycodes/keyboard_code_conversion_android.cc", |
| 55 "keycodes/keyboard_code_conversion_android.h", | 55 "keycodes/keyboard_code_conversion_android.h", |
| 56 "keycodes/keyboard_code_conversion_mac.h", | 56 "keycodes/keyboard_code_conversion_mac.h", |
| 57 "keycodes/keyboard_code_conversion_mac.mm", | 57 "keycodes/keyboard_code_conversion_mac.mm", |
| 58 "keycodes/keyboard_code_conversion_win.cc", | 58 "keycodes/keyboard_code_conversion_win.cc", |
| 59 "keycodes/keyboard_code_conversion_win.h", | 59 "keycodes/keyboard_code_conversion_win.h", |
| 60 "keycodes/keyboard_codes.h", | 60 "keycodes/keyboard_codes.h", |
| 61 "latency_info.cc", | 61 "latency_info.cc", |
| 62 "latency_info.h", | 62 "latency_info.h", |
| 63 "text_edit_commands.h", |
| 63 ] | 64 ] |
| 64 | 65 |
| 65 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] | 66 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] |
| 66 | 67 |
| 67 deps = [ | 68 deps = [ |
| 68 "//base/third_party/dynamic_annotations", | 69 "//base/third_party/dynamic_annotations", |
| 69 ] | 70 ] |
| 70 | 71 |
| 71 public_deps = [ | 72 public_deps = [ |
| 72 ":dom_keycode_converter", | 73 ":dom_keycode_converter", |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 generate_jar_jni("motionevent_jni_headers") { | 474 generate_jar_jni("motionevent_jni_headers") { |
| 474 jni_package = "ui" | 475 jni_package = "ui" |
| 475 classes = [ "android/view/MotionEvent.class" ] | 476 classes = [ "android/view/MotionEvent.class" ] |
| 476 } | 477 } |
| 477 | 478 |
| 478 generate_jar_jni("keyevent_jni_headers") { | 479 generate_jar_jni("keyevent_jni_headers") { |
| 479 jni_package = "ui" | 480 jni_package = "ui" |
| 480 classes = [ "android/view/KeyEvent.class" ] | 481 classes = [ "android/view/KeyEvent.class" ] |
| 481 } | 482 } |
| 482 } | 483 } |
| OLD | NEW |