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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 "//ipc:test_support", | 366 "//ipc:test_support", |
367 "//skia", | 367 "//skia", |
368 "//testing/gtest", | 368 "//testing/gtest", |
369 "//ui/events/devices", | 369 "//ui/events/devices", |
370 "//ui/events/ipc:events_ipc", | 370 "//ui/events/ipc:events_ipc", |
371 "//ui/events/platform", | 371 "//ui/events/platform", |
372 "//ui/gfx:test_support", | 372 "//ui/gfx:test_support", |
373 ] | 373 ] |
374 | 374 |
375 if (!is_ios) { | 375 if (!is_ios) { |
376 sources += [ "gestures/blink/web_gesture_curve_impl_unittest.cc" ] | 376 sources += [ |
| 377 "blink/input_handler_proxy_unittest.cc", |
| 378 "blink/input_scroll_elasticity_controller_unittest.cc", |
| 379 "gestures/blink/web_gesture_curve_impl_unittest.cc", |
| 380 ] |
377 deps += [ | 381 deps += [ |
378 "//third_party/WebKit/public:blink_headers", | 382 "//third_party/WebKit/public:blink_headers", |
| 383 "//ui/events/blink", |
379 "//ui/events/gestures/blink", | 384 "//ui/events/gestures/blink", |
380 ] | 385 ] |
381 } | 386 } |
382 | 387 |
383 data_deps = [ | 388 data_deps = [ |
384 "//third_party/mesa:osmesa", | 389 "//third_party/mesa:osmesa", |
385 ] | 390 ] |
386 | 391 |
387 include_dirs = [ "//testing/gmock/include" ] | 392 include_dirs = [ "//testing/gmock/include" ] |
388 | 393 |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 sources += [ "android/motion_event_android_unittest.cc" ] | 438 sources += [ "android/motion_event_android_unittest.cc" ] |
434 } | 439 } |
435 } | 440 } |
436 | 441 |
437 if (is_android) { | 442 if (is_android) { |
438 generate_jar_jni("motionevent_jni_headers") { | 443 generate_jar_jni("motionevent_jni_headers") { |
439 jni_package = "ui" | 444 jni_package = "ui" |
440 classes = [ "android/view/MotionEvent.class" ] | 445 classes = [ "android/view/MotionEvent.class" ] |
441 } | 446 } |
442 } | 447 } |
OLD | NEW |