| 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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 "ozone/evdev/event_converter_test_util.cc", | 449 "ozone/evdev/event_converter_test_util.cc", |
| 450 "ozone/evdev/event_converter_test_util.h", | 450 "ozone/evdev/event_converter_test_util.h", |
| 451 "ozone/evdev/event_device_info_unittest.cc", | 451 "ozone/evdev/event_device_info_unittest.cc", |
| 452 "ozone/evdev/event_device_test_util.cc", | 452 "ozone/evdev/event_device_test_util.cc", |
| 453 "ozone/evdev/event_device_test_util.h", | 453 "ozone/evdev/event_device_test_util.h", |
| 454 "ozone/evdev/gamepad_event_converter_evdev_unittest.cc", | 454 "ozone/evdev/gamepad_event_converter_evdev_unittest.cc", |
| 455 "ozone/evdev/input_injector_evdev_unittest.cc", | 455 "ozone/evdev/input_injector_evdev_unittest.cc", |
| 456 "ozone/evdev/tablet_event_converter_evdev_unittest.cc", | 456 "ozone/evdev/tablet_event_converter_evdev_unittest.cc", |
| 457 "ozone/evdev/touch_event_converter_evdev_unittest.cc", | 457 "ozone/evdev/touch_event_converter_evdev_unittest.cc", |
| 458 "ozone/evdev/touch_filter/false_touch_finder_unittest.cc", | 458 "ozone/evdev/touch_filter/false_touch_finder_unittest.cc", |
| 459 "ozone/gamepad/generic_gamepad_mapping_unittest.cc", |
| 459 ] | 460 ] |
| 460 | 461 |
| 461 if (use_xkbcommon) { | 462 if (use_xkbcommon) { |
| 462 sources += [ | 463 sources += [ |
| 463 "ozone/layout/keyboard_layout_engine_unittest.cc", | 464 "ozone/layout/keyboard_layout_engine_unittest.cc", |
| 464 "ozone/layout/xkb/xkb_keyboard_layout_engine_unittest.cc", | 465 "ozone/layout/xkb/xkb_keyboard_layout_engine_unittest.cc", |
| 465 ] | 466 ] |
| 466 } | 467 } |
| 467 | 468 |
| 468 deps += [ | 469 deps += [ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 497 generate_jar_jni("motionevent_jni_headers") { | 498 generate_jar_jni("motionevent_jni_headers") { |
| 498 jni_package = "ui" | 499 jni_package = "ui" |
| 499 classes = [ "android/view/MotionEvent.class" ] | 500 classes = [ "android/view/MotionEvent.class" ] |
| 500 } | 501 } |
| 501 | 502 |
| 502 generate_jar_jni("keyevent_jni_headers") { | 503 generate_jar_jni("keyevent_jni_headers") { |
| 503 jni_package = "ui" | 504 jni_package = "ui" |
| 504 classes = [ "android/view/KeyEvent.class" ] | 505 classes = [ "android/view/KeyEvent.class" ] |
| 505 } | 506 } |
| 506 } | 507 } |
| OLD | NEW |