| 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 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 group("events_unittests_run") { | 326 group("events_unittests_run") { |
| 327 testonly = true | 327 testonly = true |
| 328 deps = [ | 328 deps = [ |
| 329 ":events_unittests", | 329 ":events_unittests", |
| 330 ] | 330 ] |
| 331 } | 331 } |
| 332 | 332 |
| 333 test("events_unittests") { | 333 test("events_unittests") { |
| 334 sources = [ | 334 sources = [ |
| 335 "android/scroller_unittest.cc", | 335 "android/scroller_unittest.cc", |
| 336 "blink/input_handler_proxy_unittest.cc", |
| 337 "blink/input_scroll_elasticity_controller_unittest.cc", |
| 336 "cocoa/events_mac_unittest.mm", | 338 "cocoa/events_mac_unittest.mm", |
| 337 "event_dispatcher_unittest.cc", | 339 "event_dispatcher_unittest.cc", |
| 338 "event_processor_unittest.cc", | 340 "event_processor_unittest.cc", |
| 339 "event_rewriter_unittest.cc", | 341 "event_rewriter_unittest.cc", |
| 340 "event_unittest.cc", | 342 "event_unittest.cc", |
| 341 "gesture_detection/bitset_32_unittest.cc", | 343 "gesture_detection/bitset_32_unittest.cc", |
| 342 "gesture_detection/filtered_gesture_provider_unittest.cc", | 344 "gesture_detection/filtered_gesture_provider_unittest.cc", |
| 343 "gesture_detection/gesture_event_data_packet_unittest.cc", | 345 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 344 "gesture_detection/gesture_provider_unittest.cc", | 346 "gesture_detection/gesture_provider_unittest.cc", |
| 345 "gesture_detection/motion_event_buffer_unittest.cc", | 347 "gesture_detection/motion_event_buffer_unittest.cc", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 359 ":dom_keycode_converter", | 361 ":dom_keycode_converter", |
| 360 ":events", | 362 ":events", |
| 361 ":events_base", | 363 ":events_base", |
| 362 ":gesture_detection", | 364 ":gesture_detection", |
| 363 ":test_support", | 365 ":test_support", |
| 364 "//base", | 366 "//base", |
| 365 "//base/test:run_all_unittests", | 367 "//base/test:run_all_unittests", |
| 366 "//ipc:test_support", | 368 "//ipc:test_support", |
| 367 "//skia", | 369 "//skia", |
| 368 "//testing/gtest", | 370 "//testing/gtest", |
| 371 "//ui/events/blink", |
| 369 "//ui/events/devices", | 372 "//ui/events/devices", |
| 370 "//ui/events/ipc:events_ipc", | 373 "//ui/events/ipc:events_ipc", |
| 371 "//ui/events/platform", | 374 "//ui/events/platform", |
| 372 "//ui/gfx:test_support", | 375 "//ui/gfx:test_support", |
| 373 ] | 376 ] |
| 374 | 377 |
| 375 if (!is_ios) { | 378 if (!is_ios) { |
| 376 sources += [ "gestures/blink/web_gesture_curve_impl_unittest.cc" ] | 379 sources += [ "gestures/blink/web_gesture_curve_impl_unittest.cc" ] |
| 377 deps += [ | 380 deps += [ |
| 378 "//third_party/WebKit/public:blink_headers", | 381 "//third_party/WebKit/public:blink_headers", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 sources += [ "android/motion_event_android_unittest.cc" ] | 435 sources += [ "android/motion_event_android_unittest.cc" ] |
| 433 } | 436 } |
| 434 } | 437 } |
| 435 | 438 |
| 436 if (is_android) { | 439 if (is_android) { |
| 437 generate_jar_jni("motionevent_jni_headers") { | 440 generate_jar_jni("motionevent_jni_headers") { |
| 438 jni_package = "ui" | 441 jni_package = "ui" |
| 439 classes = [ "android/view/MotionEvent.class" ] | 442 classes = [ "android/view/MotionEvent.class" ] |
| 440 } | 443 } |
| 441 } | 444 } |
| OLD | NEW |