| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 sources += [ "test/device_data_manager_test_api_impl.cc" ] | 341 sources += [ "test/device_data_manager_test_api_impl.cc" ] |
| 342 deps += [ "//ui/events/devices" ] | 342 deps += [ "//ui/events/devices" ] |
| 343 } else { | 343 } else { |
| 344 sources += [ "test/device_data_manager_test_api_stub.cc" ] | 344 sources += [ "test/device_data_manager_test_api_stub.cc" ] |
| 345 } | 345 } |
| 346 } | 346 } |
| 347 | 347 |
| 348 test("events_unittests") { | 348 test("events_unittests") { |
| 349 sources = [ | 349 sources = [ |
| 350 "android/scroller_unittest.cc", | 350 "android/scroller_unittest.cc", |
| 351 "blink/blink_event_util_unittest.cc", |
| 351 "cocoa/events_mac_unittest.mm", | 352 "cocoa/events_mac_unittest.mm", |
| 352 "event_dispatcher_unittest.cc", | 353 "event_dispatcher_unittest.cc", |
| 353 "event_processor_unittest.cc", | 354 "event_processor_unittest.cc", |
| 354 "event_rewriter_unittest.cc", | 355 "event_rewriter_unittest.cc", |
| 355 "event_unittest.cc", | 356 "event_unittest.cc", |
| 356 "gesture_detection/bitset_32_unittest.cc", | 357 "gesture_detection/bitset_32_unittest.cc", |
| 357 "gesture_detection/filtered_gesture_provider_unittest.cc", | 358 "gesture_detection/filtered_gesture_provider_unittest.cc", |
| 358 "gesture_detection/gesture_event_data_packet_unittest.cc", | 359 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 359 "gesture_detection/gesture_provider_unittest.cc", | 360 "gesture_detection/gesture_provider_unittest.cc", |
| 360 "gesture_detection/motion_event_buffer_unittest.cc", | 361 "gesture_detection/motion_event_buffer_unittest.cc", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 generate_jar_jni("motionevent_jni_headers") { | 473 generate_jar_jni("motionevent_jni_headers") { |
| 473 jni_package = "ui" | 474 jni_package = "ui" |
| 474 classes = [ "android/view/MotionEvent.class" ] | 475 classes = [ "android/view/MotionEvent.class" ] |
| 475 } | 476 } |
| 476 | 477 |
| 477 generate_jar_jni("keyevent_jni_headers") { | 478 generate_jar_jni("keyevent_jni_headers") { |
| 478 jni_package = "ui" | 479 jni_package = "ui" |
| 479 classes = [ "android/view/KeyEvent.class" ] | 480 classes = [ "android/view/KeyEvent.class" ] |
| 480 } | 481 } |
| 481 } | 482 } |
| OLD | NEW |